good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 883aa515 authored by Jaynti Kanani's avatar Jaynti Kanani
Browse files

fix: exec start command in bor service

parent 48c93af2
No related branches found
No related tags found
Loading
......@@ -39,7 +39,7 @@ jobs:
[Service]
WorkingDirectory=/etc/bor/
EnvironmentFile=/etc/bor/metadata
ExecStart=/etc/bor/start.sh ${NETWORK_ID} ${VALIDATOR_ADDRESS} ${NODE_TYPE}
ExecStart=bash /etc/bor/start.sh ${NETWORK_ID} ${VALIDATOR_ADDRESS} ${NODE_TYPE}
Type=simple
User=root
EOF
......@@ -57,6 +57,8 @@ jobs:
EOF
cat > start.sh <<- "EOF"
#!/usr/bin/env bash
NETWORK_ID=$1
VALIDATOR_ADDRESS=$2
NODE_TYPE=$3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment