1c0ff6aa23
Later, the aports folder will probably get split up in its own repository. But right now this is simply convenient.
8 lines
160 B
Bash
8 lines
160 B
Bash
#!/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
|