Drop deprecated /etc/dhcp3 and ship as /etc/dhcp only
[grml-autoconfig.git] / etc / dhcp3 / dhclient-exit-hooks.d / grml-sethostname
diff --git a/etc/dhcp3/dhclient-exit-hooks.d/grml-sethostname b/etc/dhcp3/dhclient-exit-hooks.d/grml-sethostname
deleted file mode 100755 (executable)
index acd03a2..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-# only run the comamnd if we bound to a new ip
-case "$reason" in BOUND)
-if ! grep -q 'nodhcphostname' /proc/cmdline && [ -f /etc/grml_cd ] ; then
-
-    hostname=$(busybox nslookup "$new_ip_address" | awk '/Address 1: '$new_ip_address'/ {print $4}')
-    if [ -n "$hostname" ] ; then
-        grml-hostname "$hostname"
-        hostname -F /etc/hostname
-    fi
-fi
-;;
-esac