Skip to content

Instantly share code, notes, and snippets.

@fvigotti
Created June 1, 2016 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fvigotti/c210623b07ba16391c5491ccd174817d to your computer and use it in GitHub Desktop.
Save fvigotti/c210623b07ba16391c5491ccd174817d to your computer and use it in GitHub Desktop.
#credits : https://raw.githubusercontent.com/meteorhacks/kube-init/master/kube-init.sh
waitFor() {
cmd=$1
while [ 1 ]; do
ok=$(eval $cmd)
if [ "$ok" ]; then
break
fi
sleep 1
done
}
# usage sample :
waitFor "wget -qO- http://127.0.0.1:4001/version | grep etcd"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment