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

Diff for /src/etc/rc between version 1.53 and 1.54

version 1.53, 1997/11/04 09:15:31 version 1.54, 1997/11/08 20:45:33
Line 76 
Line 76 
 mount /usr >/dev/null 2>&1  mount /usr >/dev/null 2>&1
 mount /var >/dev/null 2>&1  mount /var >/dev/null 2>&1
   
   # $named_flags is imported from /etc/rc.conf;
   # if $named_flags != NO, named is run.
   if [ "X${named_flags}" != X"NO" ]; then
           echo -n ' named';               named $named_flags
   fi
   
 # /etc/ifaliases, if it exists, contains the names of additional IP  # /etc/ifaliases, if it exists, contains the names of additional IP
 # addresses for each interface. It is formatted as a series of lines  # addresses for each interface. It is formatted as a series of lines
 # that contain  # that contain
Line 301 
Line 307 
 if [ "X${mrouted_flags}" != X"NO" ]; then  if [ "X${mrouted_flags}" != X"NO" ]; then
         echo -n ' mrouted';             mrouted $mrouted_flags          echo -n ' mrouted';             mrouted $mrouted_flags
 fi  fi
   
 # $named_flags is imported from /etc/rc.conf;  
 # if $named_flags != NO, named is run.  
 if [ "X${named_flags}" != X"NO" ]; then  
         echo -n ' named';               named $named_flags  
 fi  
 mount -a -t nfs         # do again, in case DNS hostnames are used..  
   
 # $rwhod is imported from /etc/rc.conf;  # $rwhod is imported from /etc/rc.conf;
 # if $rwhod == YES, rwhod is run.  # if $rwhod == YES, rwhod is run.

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54