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

Diff for /src/etc/rc between version 1.114 and 1.115

version 1.114, 1999/09/28 07:20:01 version 1.115, 1999/09/29 06:46:04
Line 375 
Line 375 
         echo 'turning on accounting';   accton /var/account/acct          echo 'turning on accounting';   accton /var/account/acct
 fi  fi
   
   if [ -f /sbin/ldconfig ]; then
           echo 'creating runtime link editor directory cache.'
           if [ -d /usr/local/lib ]; then
                   shlib_dirs="$shlib_dirs /usr/local/lib"
           fi
           if [ -d /usr/X11R6/lib ]; then
                   shlib_dirs="$shlib_dirs /usr/X11R6/lib"
           fi
           ldconfig $shlib_dirs
   fi
   
 if [ ! -f /etc/ssh_host_key ]; then  if [ ! -f /etc/ssh_host_key ]; then
         umask 022          umask 022
         echo -n "ssh-keygen: generating new host key... "          echo -n "ssh-keygen: generating new host key... "
Line 478 
Line 489 
         echo -n ' mopd';                mopd ${mopd_flags}          echo -n ' mopd';                mopd ${mopd_flags}
 fi  fi
   
 if [ X"${sshd}" == X"YES" -a -x /usr/sbin/sshd ]; then  
         echo -n ' sshd';        /usr/sbin/sshd  
         #echo -n ' sshd2022';   /usr/sbin/sshd -p 2022  
 fi  
   
 if [ -x /usr/sbin/screenblank ]; then  if [ -x /usr/sbin/screenblank ]; then
         echo -n ' screenblank'; /usr/sbin/screenblank          echo -n ' screenblank'; /usr/sbin/screenblank
 fi  fi
   
   if [ X"${sshd}" == X"YES" -a -x /usr/sbin/sshd ]; then
           echo -n ' sshd';        /usr/sbin/sshd
           #echo -n ' sshd(2022)'; /usr/sbin/sshd -p 2022
   fi
   
 echo '.'  echo '.'
   
 if [ -f /sbin/kbd -a -f /etc/kbdtype ]; then  if [ -f /sbin/kbd -a -f /etc/kbdtype ]; then
         kbd `cat /etc/kbdtype`          kbd `cat /etc/kbdtype`
 fi  
   
 if [ -f /sbin/ldconfig ]; then  
         echo 'creating runtime link editor directory cache.'  
         if [ -d /usr/local/lib ]; then  
                 shlib_dirs="$shlib_dirs /usr/local/lib"  
         fi  
         if [ -d /usr/X11R6/lib ]; then  
                 shlib_dirs="$shlib_dirs /usr/X11R6/lib"  
         fi  
         ldconfig $shlib_dirs  
 fi  fi
   
 # Kerberos runs ONLY on the Kerberos servers  # Kerberos runs ONLY on the Kerberos servers

Legend:
Removed from v.1.114  
changed lines
  Added in v.1.115