aboutsummaryrefslogtreecommitdiffstats
path: root/priv/templates/builtin_hook_wait_for_vm_start
blob: 6b9ee12070b902390c0f093542c90c014bb6551f (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash

# loop until the VM starts responding to pings
while ! $(relx_nodetool "ping">/dev/null)
do
    sleep 1
done