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

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

version 1.113, 1999/09/27 23:41:18 version 1.114, 1999/09/28 07:20:01
Line 375 
Line 375 
         echo 'turning on accounting';   accton /var/account/acct          echo 'turning on accounting';   accton /var/account/acct
 fi  fi
   
   if [ ! -f /etc/ssh_host_key ]; then
           umask 022
           echo -n "ssh-keygen: generating new host key... "
           if /usr/bin/ssh-keygen -q -b 1024 -f /etc/ssh_host_key -N ''; then
                   echo done.
           else
                   echo failed.
           fi
   fi
   
 echo -n starting network daemons:  echo -n starting network daemons:
   
 # $gated and $routed_flags are imported from /etc/rc.conf.  # $gated and $routed_flags are imported from /etc/rc.conf.
Line 466 
Line 476 
 # mopd isn't run.  # mopd isn't run.
 if [ "X${mopd_flags}" != X"NO" -a -d /tftpboot/mop ]; then  if [ "X${mopd_flags}" != X"NO" -a -d /tftpboot/mop ]; then
         echo -n ' mopd';                mopd ${mopd_flags}          echo -n ' mopd';                mopd ${mopd_flags}
   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  fi
   
 if [ -x /usr/sbin/screenblank ]; then  if [ -x /usr/sbin/screenblank ]; then

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