From d27655c908b908e959687cbe31342c675ab6c043 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 16 Oct 2009 12:04:20 +0100 Subject: Add domainname to the network script --- conf.d/network.in | 2 ++ init.d/network.in | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/conf.d/network.in b/conf.d/network.in index dc0f80c..7201925 100644 --- a/conf.d/network.in +++ b/conf.d/network.in @@ -26,3 +26,5 @@ # If you require DHCP, you should install dhcpcd and it to the boot or # default runlevel. +# NIS users can set the domain name here +#domainname="foobar" diff --git a/init.d/network.in b/init.d/network.in index 8233cc4..5e60963 100644 --- a/init.d/network.in +++ b/init.d/network.in @@ -173,6 +173,16 @@ runargs() start() { local cr=0 r= int= intv= cmd= args= upcmd= + + if [ -z "$domainname" && -s /etc/defaultdomain ]; then + domainname=$(cat /etc/defaultdomain) + fi + if [ -n "$domainname" ]; then + ebegin "Setting NIS domainname: $domainname" + domainname "$domainname" + eend $? + fi + einfo "Starting network" routeflush if [ "$RC_UNAME" = "Linux" ]; then -- cgit v1.2.3