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

Diff for /src/etc/rc between version 1.266 and 1.267

version 1.266, 2005/05/18 16:43:51 version 1.267, 2005/05/19 01:58:49
Line 52 
Line 52 
 }  }
   
 sysctl_conf() {  sysctl_conf() {
           test -s /etc/sysctl.conf || return
   
         # delete comments and blank lines          # delete comments and blank lines
         set -- `stripcom /etc/sysctl.conf`          set -- `stripcom /etc/sysctl.conf`
         while [ $# -ge 1 ] ; do          while [ $# -ge 1 ] ; do
Line 71 
Line 73 
   
 mixerctl_conf()  mixerctl_conf()
 {  {
           test -s /etc/mixerctl.conf || return
   
         # delete comments and blank lines          # delete comments and blank lines
         set -- `stripcom /etc/mixerctl.conf`          set -- `stripcom /etc/mixerctl.conf`
         while [ $# -ge 1 ] ; do          while [ $# -ge 1 ] ; do
Line 79 
Line 83 
         done          done
 }  }
   
   wsconsctl_conf()
   {
           local save_IFS="$IFS"
   
           test -x /sbin/wsconsctl -a -s /etc/wsconsctl.conf || return
           # delete comments and blank lines
           IFS="
   "
           set -- `stripcom /etc/wsconsctl.conf`
           IFS="$save_IFS"
           while [ $# -ge 1 ] ; do
                   eval /sbin/wsconsctl -w $1
                   shift
           done
   }
   
 # End subroutines  # End subroutines
   
 stty status '^T'  stty status '^T'
Line 217 
Line 237 
         echo $RULES | pfctl -f - -e          echo $RULES | pfctl -f - -e
 fi  fi
   
 if [ -f /etc/sysctl.conf ]; then  sysctl_conf
         sysctl_conf  
 fi  
   
 if [ -f /etc/mixerctl.conf ]; then  mixerctl_conf
         mixerctl_conf  
 fi  
   
 # set hostname, turn on network  # set hostname, turn on network
 echo 'starting network'  echo 'starting network'
Line 670 
Line 686 
   
 echo '.'  echo '.'
   
 if [ -x /sbin/wsconsctl -a -f /etc/wsconsctl.conf ]; then  wsconsctl_conf
 (  
         # delete comments and blank lines  
         save_IFS="$IFS"  
         IFS="  
 "  
         set -- `stripcom /etc/wsconsctl.conf`  
         IFS="$save_IFS"  
         while [ $# -ge 1 ] ; do  
                 eval /sbin/wsconsctl -w $1  
                 shift  
         done  
 )  
 fi  
   
 # KerberosV master KDC  # KerberosV master KDC
 if [ X"${krb5_master_kdc}" = X"YES" ]; then  if [ X"${krb5_master_kdc}" = X"YES" ]; then

Legend:
Removed from v.1.266  
changed lines
  Added in v.1.267