=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/rc,v retrieving revision 1.39 retrieving revision 1.40 diff -c -r1.39 -r1.40 *** src/etc/rc 1997/07/22 17:11:56 1.39 --- src/etc/rc 1997/07/25 00:06:02 1.40 *************** *** 1,4 **** ! # $OpenBSD: rc,v 1.39 1997/07/22 17:11:56 kstailey Exp $ # System startup script run by init on autoboot # or after single-user. --- 1,4 ---- ! # $OpenBSD: rc,v 1.40 1997/07/25 00:06:02 provos Exp $ # System startup script run by init on autoboot # or after single-user. *************** *** 100,105 **** --- 100,112 ---- echo 'disabling rfc1323'; sysctl -w net.inet.tcp.rfc1323=0 fi + # $photurisd_flags is imported from /etc/netstart; + # If $photurisd_flags == NO or /etc/photuris/ doesn't exist, then + # photurisd isn't run. + if [ "X${photurisd_flags}" != X"NO" -a -d /etc/photuris ]; then + echo 'starting photurisd'; photurisd ${photurisd_flags} + fi + # clean up left-over files rm -f /etc/nologin rm -f /var/spool/lock/LCK.* *************** *** 310,322 **** # rbootd isn't run. if [ "X${rbootd_flags}" != X"NO" -a -r /etc/rbootd.conf ]; then echo -n ' rbootd'; rbootd ${rbootd_flags} - fi - - # $photurisd_flags is imported from /etc/netstart; - # If $photurisd_flags == NO or /etc/photuris/ doesn't exist, then - # photurisd isn't run. - if [ "X${photurisd_flags}" != X"NO" -a -d /etc/photuris ]; then - echo -n ' photurisd'; photurisd ${photurisd_flags} fi if [ -x /usr/sbin/screenblank ]; then --- 317,322 ----