mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
fix: exec start command in bor service
This commit is contained in:
parent
48c93af208
commit
883aa5159f
1 changed files with 3 additions and 1 deletions
4
.github/workflows/linuxpackage.yml
vendored
4
.github/workflows/linuxpackage.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue