Skip to content

Instantly share code, notes, and snippets.

@garthk
Created June 21, 2015 23:51
Show Gist options
  • Star 63 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save garthk/d5a17007c277aa5c76de to your computer and use it in GitHub Desktop.
Save garthk/d5a17007c277aa5c76de to your computer and use it in GitHub Desktop.
boot2docker 1.7.0 cert fix
wait4eth1() {
CNT=0
until ip a show eth1 | grep -q UP
do
[ $((CNT++)) -gt 60 ] && break || sleep 1
done
sleep 1
}
wait4eth1
@jlucasps
Copy link

jlucasps commented Aug 9, 2015

Followed @y16ra suggestion and it worked.
(At least for now. Still don't know if I need to repeat the procedure in the future.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment