[oe-commits] Mike Westerhof : SlugOS: sysconf - pass along hostname to DHCP server

git version control git at git.openembedded.org
Sun Jan 30 13:57:19 UTC 2011


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 6947f29c84daf167b2d9c58cea10b637d6ff55f7
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6947f29c84daf167b2d9c58cea10b637d6ff55f7

Author: Mike Westerhof <mwester at dls.net>
Date:   Sun Jan 30 07:43:55 2011 -0600

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 <mike at mwester.net>

---

 recipes/slugos-init/files/sysconf |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/recipes/slugos-init/files/sysconf b/recipes/slugos-init/files/sysconf
index 8d59d5d..41aa785 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"





More information about the Openembedded-commits mailing list