diff options
| -rwxr-xr-x | modules.d/slx-network/scripts/udhcpc-trigger.stage3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.d/slx-network/scripts/udhcpc-trigger.stage3 b/modules.d/slx-network/scripts/udhcpc-trigger.stage3 index d806d147..6c357138 100755 --- a/modules.d/slx-network/scripts/udhcpc-trigger.stage3 +++ b/modules.d/slx-network/scripts/udhcpc-trigger.stage3 @@ -67,7 +67,7 @@ rm -f -- "/etc/resolv.conf" reverse_lookup() { [ -z "$dns" ] && return [ -z "$1" ] && return - timeout 3 nslookup "$1" | grep -E "^Address +[0-9]+: +$1 " | head -n 1 | awk '{print $4}' + timeout 3 nslookup "$1" | awk '{if ($2 == "name") { print $4; exit; } }' } echo "# From DHCP in stage 3.1" >> "$NETWORK_CONF" |
