pmaports/busybox/dad.if-up

9 lines
160 B
Text
Raw Normal View History

#!/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