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

Diff for /src/etc/rc between version 1.126 and 1.127

version 1.126, 2000/01/01 22:45:35 version 1.127, 2000/01/02 14:25:07
Line 384 
Line 384 
         echo -n ' dhcpd';       /usr/sbin/dhcpd ${dhcpd_flags} ${dhcpd_ifs}          echo -n ' dhcpd';       /usr/sbin/dhcpd ${dhcpd_flags} ${dhcpd_ifs}
 fi  fi
   
   if ifconfig lo0 inet6 >/dev/null 2>&1; then
           fw=`sysctl -n net.inet6.ip6.forwarding`
           if [ "X${fw}" == X"0" ]; then
                   # $rtsold_flags is imported from /etc/rc.conf;
                   # If $rtsold_flags == NO, then rtsold isn't run.
                   if [ "X${rtsold_flags}" != X"NO" ]; then
                           echo -n ' rtsold'
                           /usr/sbin/rtsold ${rtsold_flags}
                   fi
           else
                   # $route6d_flags is imported from /etc/rc.conf;
                   # If $route6d_flags == NO, then route6d isn't run.
                   if [ "X${route6d_flags}" != X"NO" ]; then
                           echo -n ' route6d'
                           /usr/sbin/route6d ${route6d_flags}
                   fi
                   # $rtadvd_flags is imported from /etc/rc.conf;
                   # If $rtadvd_flags == NO or /etc/rtadvd.conf doesn't exist,
                   # then rtadvd isn't run.
                   if [ "X${rtadvd_flags}" != X"NO" -a -f /etc/rtadvd.conf ]; then
                           echo -n ' rtadvd'
                           /usr/sbin/rtadvd ${rtadvd_flags}
                   fi
           fi
   fi
   
 # $rwhod is imported from /etc/rc.conf;  # $rwhod is imported from /etc/rc.conf;
 # if $rwhod == YES, rwhod is run.  # if $rwhod == YES, rwhod is run.
 if [ X${rwhod} = X"YES" ]; then  if [ X${rwhod} = X"YES" ]; then

Legend:
Removed from v.1.126  
changed lines
  Added in v.1.127