chaind-eth/systemd/chaind-eth-ready.sh

7 lines
103 B
Bash
Raw Normal View History

2021-06-03 22:23:21 +02:00
#!/bin/bash
>&2 echo "waiting for socket at $@ to become ready"
while ! test -S $@; do
sleep 1s
done