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

Diff for /src/etc/rc between version 1.39 and 1.40

version 1.39, 1997/07/22 17:11:56 version 1.40, 1997/07/25 00:06:02
Line 100 
Line 100 
         echo 'disabling rfc1323';       sysctl -w net.inet.tcp.rfc1323=0          echo 'disabling rfc1323';       sysctl -w net.inet.tcp.rfc1323=0
 fi  fi
   
   # $photurisd_flags is imported from /etc/netstart;
   # If $photurisd_flags == NO or /etc/photuris/ doesn't exist, then
   # photurisd isn't run.
   if [ "X${photurisd_flags}" != X"NO" -a -d /etc/photuris ]; then
           echo 'starting photurisd';      photurisd ${photurisd_flags}
   fi
   
 # clean up left-over files  # clean up left-over files
 rm -f /etc/nologin  rm -f /etc/nologin
 rm -f /var/spool/lock/LCK.*  rm -f /var/spool/lock/LCK.*
Line 310 
Line 317 
 # rbootd isn't run.  # rbootd isn't run.
 if [ "X${rbootd_flags}" != X"NO" -a -r /etc/rbootd.conf ]; then  if [ "X${rbootd_flags}" != X"NO" -a -r /etc/rbootd.conf ]; then
         echo -n ' rbootd';              rbootd ${rbootd_flags}          echo -n ' rbootd';              rbootd ${rbootd_flags}
 fi  
   
 # $photurisd_flags is imported from /etc/netstart;  
 # If $photurisd_flags == NO or /etc/photuris/ doesn't exist, then  
 # photurisd isn't run.  
 if [ "X${photurisd_flags}" != X"NO" -a -d /etc/photuris ]; then  
         echo -n ' photurisd';           photurisd ${photurisd_flags}  
 fi  fi
   
 if [ -x /usr/sbin/screenblank ]; then  if [ -x /usr/sbin/screenblank ]; then

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.40