mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-10 06:16:25 +00:00
10 lines
171 B
Bash
Executable File
10 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f "${MASTER_NODE_ADDRESS_FILE}" ]; then
|
|
echo Waiting for master node...
|
|
while [ ! -f "${MASTER_NODE_ADDRESS_FILE}" ]; do
|
|
sleep 0.1
|
|
done
|
|
fi
|
|
|