1 2 3 4 5 6 7 8
#!/bin/sh # Block ifup until DAD completion # Copyright (c) 2016 Kaarle Ritvanen while ip address show dev $IFACE | grep -q " tentative "; do sleep 0.2 done