Skip to content

Commit cdfc5f6

Browse files
committed
dist: tools: tapsetup: dhclient no-wait
"Become a daemon immediately (nowait) rather than waiting until an IP address has been acquired." Otherwise tapsetup may hang for a long time in the absence of a DHCP server.
1 parent 8b83280 commit cdfc5f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/tools/tapsetup/tapsetup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ unsupported_platform() {
5959

6060
update_uplink() {
6161
if command -v dhclient > /dev/null; then
62-
dhclient $1
62+
dhclient -nw $1
6363
else
6464
echo "DHCP client \`dhclient\` not found." >&2
6565
echo "Please reconfigure your DHCP client for interface $1" >&2

0 commit comments

Comments
 (0)