[BACK]Return to netstart CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/netstart between version 1.86 and 1.87

version 1.86, 2003/02/16 23:25:40 version 1.87, 2003/08/27 11:49:36
Line 175 
Line 175 
 # Otherwise, process with the complete network initialization.  # Otherwise, process with the complete network initialization.
   
 # /etc/myname contains my symbolic name  # /etc/myname contains my symbolic name
 hostname=`cat /etc/myname`  if [ -f /etc/myname ]; then
 hostname $hostname          hostname=`cat /etc/myname`
           hostname $hostname
   else
           hostname=`hostname`
   fi
   
 if [ -f /etc/defaultdomain ]; then  if [ -f /etc/defaultdomain ]; then
         domainname `cat /etc/defaultdomain`          domainname `cat /etc/defaultdomain`
 fi  fi

Legend:
Removed from v.1.86  
changed lines
  Added in v.1.87