aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/dad.if-up
blob: e76bb60bfa92bc641449cddb736c9bee61a42ae0 (plain)
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