From: Mike Westerhof Date: Sun, 30 Jan 2011 13:43:55 +0000 (-0600) Subject: SlugOS: sysconf - pass along hostname to DHCP server X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6947f29c84daf167b2d9c58cea10b637d6ff55f7;p=openembedded.git SlugOS: sysconf - pass along hostname to DHCP server This change will result in the appropriate DNS entry being created dynamically, if the DHCP server supports doing so. Signed-off-by: Mike Westerhof --- diff --git a/recipes/slugos-init/files/sysconf b/recipes/slugos-init/files/sysconf index 8d59d5d6f3..41aa785884 100644 --- a/recipes/slugos-init/files/sysconf +++ b/recipes/slugos-init/files/sysconf @@ -182,6 +182,8 @@ sysconf_reload(){ echo "# address, netmask and gateway are ignored for 'dhcp'" echo "# but required for 'static'" echo "iface $iface inet $boot" + # The following is used by DHCP to register the hostname + test -n "$host" && echo " hostname $host" # The following are ignored for DHCP but are harmless test -n "$ip" && echo " address $ip" test -n "$netmask" && echo " netmask $netmask"