Skip to content

Instantly share code, notes, and snippets.

View kayabendroth's full-sized avatar

Kay Abendroth kayabendroth

View GitHub Profile
@garthk
garthk / profile
Created June 21, 2015 23:51
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