1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

Merge pull request #20411 from OlegHahm/pr/tapsetup_dhclient_nowait

dist: tools: avoid hanging tapsetup in the absence of a DHCP server
This commit is contained in:
Marian Buschsieweke 2025-02-02 18:32:05 +00:00 committed by GitHub
commit c5d23ba5fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,7 +63,7 @@ unsupported_platform() {
update_uplink() {
if command -v dhclient > /dev/null; then
dhclient $1
dhclient -nw $1
else
echo "DHCP client \`dhclient\` not found." >&2
echo "Please reconfigure your DHCP client for interface $1" >&2