X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fdhcp3%2Fdhclient-exit-hooks.d%2Fgrml-sethostname;fp=etc%2Fdhcp3%2Fdhclient-exit-hooks.d%2Fgrml-sethostname;h=0000000000000000000000000000000000000000;hb=b5b129632d65e8489851bf444e48daadcab344a4;hp=acd03a2913672183e05664a82dd5a03c2dc239c2;hpb=ac2c74ae10dedbafb6d8f47ebe5efd67a84427c2;p=grml-autoconfig.git diff --git a/etc/dhcp3/dhclient-exit-hooks.d/grml-sethostname b/etc/dhcp3/dhclient-exit-hooks.d/grml-sethostname deleted file mode 100755 index acd03a2..0000000 --- a/etc/dhcp3/dhclient-exit-hooks.d/grml-sethostname +++ /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