From 6947f29c84daf167b2d9c58cea10b637d6ff55f7 Mon Sep 17 00:00:00 2001 From: Mike Westerhof Date: Sun, 30 Jan 2011 07:43:55 -0600 Subject: 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 --- recipes/slugos-init/files/sysconf | 2 ++ 1 file changed, 2 insertions(+) (limited to 'recipes/slugos-init') 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" -- cgit 1.2.3-korg