Created
October 26, 2012 00:49
-
-
Save niceaji/3956376 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| function wait_for() { | |
| until $1; do | |
| echo $2 | |
| sleep $3 | |
| done | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
wait_for "ssh $ip echo" "waiting $ip to boot up..." 3
timeout 10 wait_for "ssh $ip echo" "waiting $ip to boot up..." 3