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

Diff for /src/etc/rc between version 1.60 and 1.61

version 1.60, 1998/01/23 08:38:31 version 1.61, 1998/02/05 09:54:36
Line 113 
Line 113 
         echo 'starting ipmon';          ipmon ${ipmon_flags}          echo 'starting ipmon';          ipmon ${ipmon_flags}
 fi  fi
   
 if [ X"${rfc1323}" = X"NO" ]; then  
         echo 'disabling rfc1323';       sysctl -w net.inet.tcp.rfc1323=0  
 fi  
   
 # $photurisd_flags is imported from /etc/rc.conf;  # $photurisd_flags is imported from /etc/rc.conf;
 # If $photurisd_flags == NO or /etc/photuris/photuris.conf doesn't exist, then  # If $photurisd_flags == NO or /etc/photuris/photuris.conf doesn't exist, then
 # photurisd isn't run.  # photurisd isn't run.
Line 229 
Line 225 
 (cd /tmp && rm -rf [a-km-pr-zA-Z]* &&  (cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
     find . ! -name . ! -name lost+found ! -name quota.user \      find . ! -name . ! -name lost+found ! -name quota.user \
         ! -name quota.group -exec rm -rf -- {} \; -type d -prune)          ! -name quota.group -exec rm -rf -- {} \; -type d -prune)
   
   if [ -f /etc/sysctl.conf ]; then
           # delete comments and blank lines
           set -- `sed -e 's/#.*$//' /etc/sysctl.conf | grep -v '^$'`
           while [ $# -ge 1 ] ; do
                   sysctl -w $1
                   shift 1
           done
   )
   fi
   
 test -f /etc/rc.securelevel && . /etc/rc.securelevel  test -f /etc/rc.securelevel && . /etc/rc.securelevel
 if [ X${securelevel} != X"" ]; then  if [ X${securelevel} != X"" ]; then

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61