Skip to content

Instantly share code, notes, and snippets.

@marclop
Created July 6, 2015 09:24
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 marclop/242d5c1c1f0e3b8b81bd to your computer and use it in GitHub Desktop.
Save marclop/242d5c1c1f0e3b8b81bd to your computer and use it in GitHub Desktop.
wait4eth1() {
CNT=0
until ip a show eth1 | grep -q UP
do
[ $((CNT++)) -gt 60 ] && break || sleep 1
done
sleep 1
}
wait4eth1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment