mirror of
https://github.com/logos-co/nomos-node.git
synced 2026-08-27 09:31:10 +00:00
14 lines
323 B
Bash
Executable File
14 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf /node-data/cfgsync
|
|
|
|
set -e
|
|
|
|
export CFG_SERVER_MODE="setup" \
|
|
CFG_SERVER_STORAGE_PATH="/node-data/cfgsync/deployment-settings.yaml" \
|
|
CHAIN_START_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
|
|
|
|
mkdir /node-data/cfgsync
|
|
|
|
exec /usr/bin/logos-blockchain-cfgsync-server /etc/logos-blockchain/cfgsync.yaml
|