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

Annotation of src/etc/rc, Revision 1.203

1.203   ! hugh        1: #      $OpenBSD: rc,v 1.202 2002/07/27 22:11:58 matthieu Exp $
1.1       deraadt     2:
                      3: # System startup script run by init on autoboot
                      4: # or after single-user.
                      5: # Output and error are redirected to console by init,
                      6: # and the console is the controlling terminal.
                      7:
1.131     millert     8: # Subroutines (have to come first).
                      9:
                     10: # Strip comments (and leading/trailing whitespace if IFS is set)
                     11: # from a file and spew to stdout
                     12: stripcom() {
                     13:        local _file="$1"
                     14:        local _line
                     15:
                     16:        {
                     17:                while read _line ; do
                     18:                        _line=${_line%%#*}              # strip comments
                     19:                        test -z "$_line" && continue
                     20:                        echo $_line
                     21:                done
                     22:        } < $_file
                     23: }
                     24:
                     25: # End subroutines
                     26:
1.1       deraadt    27: stty status '^T'
                     28:
                     29: # Set shell to ignore SIGINT (2), but not children;
                     30: # shell catches SIGQUIT (3) and returns to single user after fsck.
                     31: trap : 2
                     32: trap : 3       # shouldn't be needed
                     33:
                     34: HOME=/; export HOME
                     35: PATH=/sbin:/bin:/usr/sbin:/usr/bin
                     36: export PATH
1.108     deraadt    37:
                     38: if [ $1x = shutdownx ]; then
                     39:        dd if=/dev/urandom of=/var/db/host.random bs=1024 count=64 >/dev/null 2>&1
                     40:        chmod 600 /var/db/host.random >/dev/null 2>&1
                     41:        if [ $? -eq 0 -a -f /etc/rc.shutdown ]; then
                     42:                echo /etc/rc.shutdown in progress...
                     43:                . /etc/rc.shutdown
                     44:                echo /etc/rc.shutdown complete.
                     45:                if [ "X${powerdown}" = X"YES" ]; then
                     46:                        exit 2
                     47:                fi
                     48:        else
                     49:                echo single user: not running /etc/rc.shutdown
                     50:        fi
                     51:        exit 0
                     52: fi
1.1       deraadt    53:
                     54: # Configure ccd devices.
1.17      deraadt    55: if [ -f /etc/ccd.conf ]; then
1.1       deraadt    56:        ccdconfig -C
                     57: fi
1.98      jakob      58:
                     59: # Configure raid devices.
                     60: for dev in 0 1 2 3; do
                     61:        if [ -f /etc/raid$dev.conf ]; then
                     62:                raidctl -c /etc/raid$dev.conf raid$dev
                     63:        fi
                     64: done
1.190     tdeval     65:
                     66: # Check parity on raid devices.
1.191     deraadt    67: raidctl -P all
1.1       deraadt    68:
1.172     miod       69: swapctl -A -t blk
1.170     deraadt    70:
1.17      deraadt    71: if [ -e /fastboot ]; then
1.1       deraadt    72:        echo "Fast boot: skipping disk checks."
1.17      deraadt    73: elif [ $1x = autobootx ]; then
1.1       deraadt    74:        echo "Automatic boot in progress: starting file system checks."
1.31      millert    75:        fsck -p
1.1       deraadt    76:        case $? in
                     77:        0)
                     78:                ;;
                     79:        2)
                     80:                exit 1
                     81:                ;;
                     82:        4)
                     83:                echo "Rebooting..."
                     84:                reboot
                     85:                echo "Reboot failed; help!"
                     86:                exit 1
                     87:                ;;
                     88:        8)
                     89:                echo "Automatic file system check failed; help!"
                     90:                exit 1
                     91:                ;;
                     92:        12)
                     93:                echo "Boot interrupted."
                     94:                exit 1
                     95:                ;;
                     96:        130)
                     97:                # interrupt before catcher installed
                     98:                exit 1
                     99:                ;;
                    100:        *)
                    101:                echo "Unknown error; help!"
                    102:                exit 1
                    103:                ;;
                    104:        esac
                    105: fi
                    106:
                    107: trap "echo 'Boot interrupted.'; exit 1" 3
                    108:
                    109: umount -a >/dev/null 2>&1
                    110: mount -a -t nonfs
1.57      niklas    111: mount -uw /            # root on nfs requires this, others aren't hurt
1.1       deraadt   112: rm -f /fastboot                # XXX (root now writeable)
1.177     deraadt   113:
                    114: # pick up option configuration
                    115: . /etc/rc.conf
1.1       deraadt   116:
                    117: # set flags on ttys.  (do early, in case they use tty for SLIP in netstart)
                    118: echo 'setting tty flags'
                    119: ttyflags -a
1.77      angelos   120:
1.186     deraadt   121: if [ "X${pf}" != X"NO" ]; then
1.184     deraadt   122:        RULES="block in all\nblock out all"
1.195     dhartmei  123:        RULES="$RULES\npass in proto tcp from any to any port 22 keep state"
1.193     deraadt   124:        case `sysctl vfs.mounts.nfs 2>/dev/null` in
1.184     deraadt   125:        *[1-9]*)
                    126:                # don't kill NFS
                    127:                RULES="$RULES\npass in proto udp from any port { 111, 2049 } to any"
                    128:                RULES="$RULES\npass out proto udp from any to any port { 111, 2049 }"
                    129:                ;;
                    130:        esac
1.198     dhartmei  131:        echo $RULES | pfctl -f - -e
1.176     kjell     132: fi
                    133:
1.126     deraadt   134: if [ -f /etc/sysctl.conf ]; then
                    135: (
                    136:        # delete comments and blank lines
1.131     millert   137:        set -- `stripcom /etc/sysctl.conf`
1.126     deraadt   138:        while [ $# -ge 1 ] ; do
                    139:                sysctl -w $1
1.129     millert   140:                shift
1.126     deraadt   141:        done
                    142: )
                    143: fi
                    144:
1.1       deraadt   145: # set hostname, turn on network
                    146: echo 'starting network'
                    147: . /etc/netstart
1.176     kjell     148:
1.186     deraadt   149: if [ "X${pf}" != X"NO" ]; then
1.176     kjell     150:        if [ -f ${pf_rules} ]; then
1.198     dhartmei  151:                pfctl -f ${pf_rules}
1.176     kjell     152:        fi
                    153: fi
1.1       deraadt   154:
                    155: mount /usr >/dev/null 2>&1
                    156: mount /var >/dev/null 2>&1
1.180     deraadt   157:
1.149     deraadt   158: # if there's no /var/db/host.random, make one through /dev/urandom
                    159: if [ ! -f /var/db/host.random ]; then
                    160:        dd if=/dev/urandom of=/var/db/host.random bs=1024 count=64 \
                    161:                >/dev/null 2>&1
                    162:        chmod 600 /var/db/host.random >/dev/null 2>&1
                    163: else
                    164:        dd if=/var/db/host.random of=/dev/urandom bs=1024 count=64 \
                    165:            > /dev/null 2>&1
                    166:        dd if=/var/db/host.random of=/dev/arandom bs=1024 count=64 \
                    167:            > /dev/null 2>&1
                    168: fi
1.157     deraadt   169:
                    170: # reset seed file, so that if a shutdown-less reboot occurs,
                    171: # the next seed is not a repeat
                    172: dd if=/dev/urandom of=/var/db/host.random bs=1024 count=64 \
                    173:     > /dev/null 2>&1
1.29      deraadt   174:
1.55      deraadt   175: # clean up left-over files
                    176: rm -f /etc/nologin
                    177: rm -f /var/spool/lock/LCK.*
                    178: rm -f /var/spool/uucp/STST/*
1.192     millert   179: (cd /var/run && { test -r dhclient.pid && dhclient_pid=`cat dhclient.pid`; rm -rf -- *; install -c -m 664 -g utmp /dev/null utmp; test -n "$dhclient_pid" && echo "$dhclient_pid" > dhclient.pid; })
1.196     beck      180: (cd /var/authpf && rm -rf -- *)
                    181:
1.96      alex      182:
                    183: # save a copy of the boot messages
                    184: dmesg >/var/run/dmesg.boot
1.55      deraadt   185:
1.58      deraadt   186: echo 'starting system logger'
                    187: rm -f /dev/log
1.76      millert   188: if [ "X${named_flags}" != X"NO" -a "X${named_chroot}" != "X" ]; then
1.74      millert   189:        rm -f ${named_chroot}/dev/log
                    190:        syslogd_flags="${syslogd_flags} -a ${named_chroot}/dev/log"
                    191: fi
1.65      marc      192: syslogd ${syslogd_flags}
1.184     deraadt   193:
1.186     deraadt   194: if [ X"${pf}" != X"NO" -a X"${pflogd_flags}" != X"NO" ]; then
1.184     deraadt   195:        ifconfig pflog0 up
                    196:        pflogd ${pflogd_flags}
                    197: fi
1.89      todd      198:
1.74      millert   199: # $named_flags, $named_user, and $named_chroot are imported from /etc/rc.conf;
1.54      deraadt   200: # if $named_flags != NO, named is run.
                    201: if [ "X${named_flags}" != X"NO" ]; then
1.74      millert   202:        if [ "X${named_user}" != "X" -a "X${named_user}" != X"root" ]; then
                    203:                named_flags="-u ${named_user} ${named_flags}"
                    204:        fi
1.75      millert   205:        if [ "X${named_chroot}" != "X" ]; then
1.81      millert   206:                if [ ! -c "${named_chroot}/dev/null" ]; then
                    207:                        ( cd /dev ; pax -rw -pe null ${named_chroot}/dev )
1.83      millert   208:                fi
                    209:                if [ -f /etc/localtime -a -d "${named_chroot}/etc" ]; then
                    210:                        cmp -s /etc/localtime "${named_chroot}/etc/localtime" \
                    211:                        || cp -p /etc/localtime "${named_chroot}/etc/localtime"
1.81      millert   212:                fi
1.74      millert   213:                named_flags="-t ${named_chroot} ${named_flags}"
                    214:        fi
1.58      deraadt   215:        echo 'starting named';          named $named_flags
1.25      deraadt   216: fi
                    217:
1.52      deraadt   218: # $photurisd_flags is imported from /etc/rc.conf;
1.45      kstailey  219: # If $photurisd_flags == NO or /etc/photuris/photuris.conf doesn't exist, then
1.40      provos    220: # photurisd isn't run.
1.45      kstailey  221: if [ "X${photurisd_flags}" != X"NO" -a -e /etc/photuris/photuris.conf ]; then
1.40      provos    222:        echo 'starting photurisd';      photurisd ${photurisd_flags}
1.94      deraadt   223: fi
                    224:
                    225: # $isakmpd_flags is imported from /etc/rc.conf;
1.185     angelos   226: # If $isakmpd_flags == NO or /etc/isakmpd/isakmpd.policy doesn't exist, then
1.94      deraadt   227: # isakmpd isn't run.
1.185     angelos   228: if [ "X${isakmpd_flags}" != X"NO" -a -e /etc/isakmpd/isakmpd.policy ]; then
1.94      deraadt   229:        echo 'starting isakmpd';        isakmpd ${isakmpd_flags}
1.40      provos    230: fi
1.1       deraadt   231:
                    232: echo -n 'starting rpc daemons:'
1.24      millert   233:
1.52      deraadt   234: # $portmap is imported from /etc/rc.conf;
1.24      millert   235: # if $portmap == YES, the portmapper is started.
                    236: if [ X"${portmap}" = X"YES" ]; then
1.23      deraadt   237:        echo -n ' portmap';             portmap
                    238: fi
1.1       deraadt   239:
1.174     deraadt   240: if [ -d /var/yp/binding -a X`domainname` != X ]; then
1.8       deraadt   241:        if [ -d /var/yp/`domainname` ]; then
                    242:                # yp server capabilities needed...
1.36      niklas    243:                echo -n ' ypserv';              ypserv ${ypserv_flags}
1.16      deraadt   244:                #echo -n ' ypxfrd';             ypxfrd
1.21      deraadt   245:        fi
                    246:
                    247:        echo -n ' ypbind';              ypbind
1.8       deraadt   248:
1.21      deraadt   249:        if [ -d /var/yp/`domainname` ]; then
1.8       deraadt   250:                # if we are the master server, run rpc.yppasswdd
                    251:                _host1=`ypwhich -m passwd 2> /dev/null`
                    252:                _host2=`hostname`
1.15      deraadt   253:                if [ `grep '^lookup' /etc/resolv.conf | grep yp | wc -c` -ne 0 ]; then
1.8       deraadt   254:                        _host1=`ypmatch $_host1 hosts | cut -d' ' -f2`
                    255:                        _host2=`ypmatch $_host2 hosts | cut -d' ' -f2 | head -1`
                    256:                else
                    257:                        _host1=`nslookup $_host1 | grep '^Name: ' | \
                    258:                            sed -e 's/^Name:    //'`
                    259:                        _host2=`nslookup $_host2 | grep '^Name: ' | \
                    260:                            sed -e 's/^Name:    //'`
                    261:                fi
1.13      deraadt   262:                if [ "$_host2" = "$_host1" ]; then
1.35      niklas    263:                        echo -n ' rpc.yppasswdd'
                    264:                        rpc.yppasswdd ${yppasswdd_flags}
1.8       deraadt   265:                fi
1.7       deraadt   266:        fi
1.1       deraadt   267: fi
                    268:
1.52      deraadt   269: # $nfs_server is imported from /etc/rc.conf;
1.1       deraadt   270: # if $nfs_server == YES, the machine is setup for being an nfs server
1.67      millert   271: if [ X${nfs_server} = X"YES" -a -s /etc/exports -a \
1.141     deraadt   272:     `sed -e '/^#/d' < /etc/exports | wc -l` -ne 0 ]; then
1.68      millert   273:        rm -f /var/db/mountdtab
1.1       deraadt   274:        echo -n > /var/db/mountdtab
                    275:        echo -n ' mountd';              mountd
1.42      niklas    276:        echo -n ' nfsd';                nfsd ${nfsd_flags}
                    277:        if [ X${lockd} = X"YES" ]; then
                    278:                echo -n ' rpc.lockd';   rpc.lockd
                    279:        fi
1.1       deraadt   280: fi
                    281:
1.165     deraadt   282: if [ X${amd} = X"YES" -a -e ${amd_master} ]; then
1.1       deraadt   283:        echo -n ' amd'
1.107     deraadt   284:        (cd /etc/amd; amd -l syslog -x error,noinfo,nostats -p \
                    285:            -a ${amd_dir} `cat ${amd_master}` > /var/run/amd.pid )
1.146     matt      286: fi
                    287:
                    288: # run rdate before timed
1.148     millert   289: if [ X"${rdate_flags}" != X"NO" ]; then
1.146     matt      290:         echo -n ' rdate';     rdate -s ${rdate_flags}
1.1       deraadt   291: fi
                    292:
1.52      deraadt   293: # $timed_flags is imported from /etc/rc.conf;
1.1       deraadt   294: # if $timed_flags == NO, timed isn't run.
                    295: if [ "X${timed_flags}" != X"NO" ]; then
1.58      deraadt   296:        echo -n ' timed'; timed $timed_flags
1.1       deraadt   297: fi
                    298: echo '.'
1.58      deraadt   299:
                    300: mount -a -t nfs
1.172     miod      301:
                    302: swapctl -A -t noblk
1.1       deraadt   303:
                    304: # /var/crash should be a directory or a symbolic link
                    305: # to the crash directory if core dumps are to be saved.
                    306: if [ -d /var/crash ]; then
1.188     tholo     307:        savecore ${savecore_flags} /var/crash
1.1       deraadt   308: fi
                    309:
1.90      art       310: if [ "X${afs}" = X"YES" -a -c ${afs_device} -a -d ${afs_mount_point} ]; then
                    311:        echo -n 'mounting afs:'
1.91      art       312:        mount -t xfs ${afs_device} ${afs_mount_point}
1.90      art       313:        /usr/libexec/afsd ${afsd_flags} -d ${afs_device}
                    314:        echo ' done.'
                    315: fi
                    316:
1.41      downsj    317: if [ "X${check_quotas}" = X"YES" ]; then
                    318:        echo -n 'checking quotas:'
                    319:        quotacheck -a
                    320:        echo ' done.'
                    321:        quotaon -a
                    322: fi
1.1       deraadt   323:
                    324: # build ps databases
1.95      deraadt   325: echo -n 'building ps databases:'
                    326: echo -n " kvm"
1.88      millert   327: kvm_mkdb
1.95      deraadt   328: echo -n " dev"
1.1       deraadt   329: dev_mkdb
1.95      deraadt   330: echo "."
1.1       deraadt   331:
1.101     deraadt   332: chmod 666 /dev/tty[pqrstuvwxyzPQRST]*
                    333: chown root.wheel /dev/tty[pqrstuvwxyzPQRST]*
1.1       deraadt   334:
                    335: # check the password temp/lock file
1.17      deraadt   336: if [ -f /etc/ptmp ]; then
1.1       deraadt   337:        logger -s -p auth.err \
                    338:        'password file may be incorrect -- /etc/ptmp exists'
1.32      deraadt   339: fi
                    340:
1.49      millert   341: echo clearing /tmp
                    342:
                    343: # prune quickly with one rm, then use find to clean up /tmp/[lq]*
                    344: # (not needed with mfs /tmp, but doesn't hurt there...)
                    345: (cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
                    346:     find . ! -name . ! -name lost+found ! -name quota.user \
1.103     millert   347:        ! -name quota.group -execdir rm -rf -- {} \; -type d -prune)
1.49      millert   348:
1.203   ! hugh      349: # create Unix sockets directories  for X if needed and make sure they have
        !           350: # correct permissions
        !           351: if [ -d /usr/X11R6/lib ]; then
        !           352:        for d in /tmp/.X11-unix /tmp/.ICE-unix ; do
        !           353:                if [ -d $d ]; then
        !           354:                        if [ `ls -ld $d | cut -d' ' -f4` != root ]; then
        !           355:                                chown root $d
        !           356:                        fi
        !           357:                        if [ `ls -ld $d | cut -d' ' -f1` != drwxrwxrwt ]; then
        !           358:                                chmod 1777 $d
        !           359:                        fi
        !           360:                elif [ -e $d ]; then
        !           361:                        echo "Error: $d exists and isn't a directory."
        !           362:                else
        !           363:                        mkdir -m 1777 $d
        !           364:                fi
        !           365:        done
        !           366: fi
        !           367:
1.72      deraadt   368: [ -f /etc/rc.securelevel ] && . /etc/rc.securelevel
1.32      deraadt   369: if [ X${securelevel} != X"" ]; then
1.33      millert   370:        echo -n 'setting kernel security level: '
1.32      deraadt   371:        sysctl -w kern.securelevel=${securelevel}
1.1       deraadt   372: fi
                    373:
1.34      deraadt   374: # patch /etc/motd
                    375: if [ ! -f /etc/motd ]; then
                    376:        install -c -o root -g wheel -m 664 /dev/null /etc/motd
                    377: fi
1.131     millert   378: T=`mktemp /tmp/_motd.XXXXXXXXXX`
1.105     millert   379: if [ $? -eq 0 ]; then
1.102     millert   380:        sysctl -n kern.version | sed 1q > $T
                    381:        echo "" >> $T
                    382:        sed '1,/^$/d' < /etc/motd >> $T
                    383:        cmp -s $T /etc/motd || cp $T /etc/motd
                    384:        rm -f $T
                    385: fi
1.34      deraadt   386:
1.121     millert   387: if [ -x /usr/libexec/vi.recover ]; then
                    388:        echo 'preserving editor files'; /usr/libexec/vi.recover
1.1       deraadt   389: fi
                    390:
                    391: if [ -f /var/account/acct ]; then
                    392:        echo 'turning on accounting';   accton /var/account/acct
                    393: fi
                    394:
1.115     deraadt   395: if [ -f /sbin/ldconfig ]; then
                    396:        echo 'creating runtime link editor directory cache.'
                    397:        if [ -d /usr/local/lib ]; then
1.183     todd      398:                shlib_dirs="/usr/local/lib $shlib_dirs"
1.115     deraadt   399:        fi
                    400:        if [ -d /usr/X11R6/lib ]; then
1.183     todd      401:                shlib_dirs="/usr/X11R6/lib $shlib_dirs"
1.115     deraadt   402:        fi
                    403:        ldconfig $shlib_dirs
                    404: fi
                    405:
1.189     deraadt   406: if [ ! -f /etc/ssh/ssh_host_dsa_key ]; then
1.133     deraadt   407:        echo -n "ssh-keygen: generating new DSA host key... "
1.189     deraadt   408:        if /usr/bin/ssh-keygen -q -t dsa -f /etc/ssh/ssh_host_dsa_key -N ''; then
1.163     deraadt   409:                echo done.
                    410:        else
                    411:                echo failed.
                    412:        fi
                    413: fi
1.189     deraadt   414: if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then
1.163     deraadt   415:        echo -n "ssh-keygen: generating new RSA host key... "
1.189     deraadt   416:        if /usr/bin/ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''; then
1.133     deraadt   417:                echo done.
                    418:        else
                    419:                echo failed.
                    420:        fi
                    421: fi
1.189     deraadt   422: if [ ! -f /etc/ssh/ssh_host_key ]; then
1.187     markus    423:        echo -n "ssh-keygen: generating new RSA1 host key... "
1.189     deraadt   424:        if /usr/bin/ssh-keygen -q -t rsa1 -f /etc/ssh/ssh_host_key -N ''; then
1.114     deraadt   425:                echo done.
                    426:        else
                    427:                echo failed.
                    428:        fi
                    429: fi
                    430:
1.1       deraadt   431: echo -n starting network daemons:
                    432:
1.52      deraadt   433: # $gated and $routed_flags are imported from /etc/rc.conf.
1.1       deraadt   434: # If $gated == YES, gated is used; otherwise routed.
                    435: # If $routed_flags == NO, routed isn't run.
1.67      millert   436: if [ X${gated} = X"YES" -a -e /etc/gated.conf ]; then
1.151     brad      437:        echo -n ' gated';               /usr/local/sbin/gated $gated_flags
1.1       deraadt   438: elif [ "X${routed_flags}" != X"NO" ]; then
                    439:        echo -n ' routed';              routed $routed_flags
                    440: fi
                    441:
1.52      deraadt   442: # $mrouted_flags is imported from /etc/rc.conf;
1.4       deraadt   443: # If $mrouted_flags == NO, then mrouted isn't run.
                    444: if [ "X${mrouted_flags}" != X"NO" ]; then
                    445:        echo -n ' mrouted';             mrouted $mrouted_flags
1.179     deraadt   446: fi
                    447:
                    448: # $altqd_flags is imported from /etc/rc.conf;
                    449: # If $altqd_flags == NO, then altqd isn't run.
                    450: if [ "X${altqd_flags}" != X"NO" ]; then
                    451:        echo -n ' altqd';               altqd $altqd_flags
1.4       deraadt   452: fi
1.1       deraadt   453:
1.86      form      454: # $dhcpd_flags is imported from /etc/rc.conf
                    455: # If $dhcpd_flags == NO or /etc/dhcpd.conf doesn't exist, then dhcpd isn't run.
                    456: if [ "X${dhcpd_flags}" != X"NO" -a -f /etc/dhcpd.conf ]; then
                    457:        touch /var/db/dhcpd.leases
                    458:        if [ -f /etc/dhcpd.interfaces ]; then
1.141     deraadt   459:                dhcpd_ifs=`awk -F\# '{ print $1; }' < /etc/dhcpd.interfaces`
1.86      form      460:        fi
                    461:        echo -n ' dhcpd';       /usr/sbin/dhcpd ${dhcpd_flags} ${dhcpd_ifs}
1.127     itojun    462: fi
                    463:
                    464: if ifconfig lo0 inet6 >/dev/null 2>&1; then
                    465:        fw=`sysctl -n net.inet6.ip6.forwarding`
                    466:        if [ "X${fw}" == X"0" ]; then
                    467:                # $rtsold_flags is imported from /etc/rc.conf;
                    468:                # If $rtsold_flags == NO, then rtsold isn't run.
                    469:                if [ "X${rtsold_flags}" != X"NO" ]; then
                    470:                        echo -n ' rtsold'
                    471:                        /usr/sbin/rtsold ${rtsold_flags}
                    472:                fi
                    473:        else
                    474:                # $route6d_flags is imported from /etc/rc.conf;
                    475:                # If $route6d_flags == NO, then route6d isn't run.
                    476:                if [ "X${route6d_flags}" != X"NO" ]; then
                    477:                        echo -n ' route6d'
                    478:                        /usr/sbin/route6d ${route6d_flags}
                    479:                fi
                    480:                # $rtadvd_flags is imported from /etc/rc.conf;
1.147     itojun    481:                # If $rtadvd_flags == NO, then rtadvd isn't run.
                    482:                if [ "X${rtadvd_flags}" != X"NO" ]; then
1.127     itojun    483:                        echo -n ' rtadvd'
                    484:                        /usr/sbin/rtadvd ${rtadvd_flags}
                    485:                fi
                    486:        fi
1.86      form      487: fi
                    488:
1.52      deraadt   489: # $rwhod is imported from /etc/rc.conf;
1.1       deraadt   490: # if $rwhod == YES, rwhod is run.
                    491: if [ X${rwhod} = X"YES" ]; then
                    492:        echo -n ' rwhod';               rwhod
                    493: fi
                    494:
1.23      deraadt   495:
1.173     fgsch     496: if [ X${lpd_flags} != X"NO" ]; then
                    497:        echo -n ' printer';             lpd ${lpd_flags}
1.23      deraadt   498: fi
1.1       deraadt   499:
1.52      deraadt   500: # $sendmail_flags is imported from /etc/rc.conf;
1.154     millert   501: # If $sendmail_flags == NO or /etc/mailer.conf doesn't exist, then
1.6       deraadt   502: # sendmail isn't run.  We call sendmail with a full path so that
1.154     millert   503: # SIGHUP works.  Note that /usr/sbin/sendmail may actually call a
                    504: # mailer other than sendmail, depending on /etc/mailer.conf.
                    505: if [ "X${sendmail_flags}" != X"NO" -a -s /etc/mailer.conf ]; then
1.153     millert   506:        echo -n ' sendmail';            ( /usr/sbin/sendmail ${sendmail_flags} >/dev/null 2>&1 & )
1.69      deraadt   507: fi
                    508:
                    509: if [ "X${httpd_flags}" != X"NO"  ]; then
1.143     espie     510:        # Clean up left-over httpd locks
                    511:        rm -f /var/www/logs/{ssl_mutex,httpd.lock,accept.lock}.*
1.160     angelos   512:        echo -n ' httpd';               /usr/sbin/httpd ${httpd_flags}
1.93      downsj    513: fi
                    514:
                    515: if [ "X${ftpd_flags}" != X"NO" ]; then
                    516:        echo -n ' ftpd';                /usr/libexec/ftpd ${ftpd_flags}
1.124     fgsch     517: fi
                    518:
                    519: if [ "X${identd_flags}" != X"NO" ]; then
                    520:        echo -n ' identd';              /usr/libexec/identd ${identd_flags}
1.1       deraadt   521: fi
1.63      beck      522:
                    523: # $smtpfwdd_flags is imported from /etc/rc.conf;
                    524: # If $smtpfwdd_flags == NO, smtpfwdd isn't run.
                    525: if [ "X${smtpfwdd_flags}" != X"NO" ]; then
                    526:        echo -n ' smtpfwdd';    /usr/libexec/smtpfwdd ${smtpfwdd_flags}
                    527: fi
                    528:
1.1       deraadt   529:
1.161     angelos   530: if [ X${inetd} = X"YES" -a -e /etc/inetd.conf ]; then
1.23      deraadt   531:        echo -n ' inetd';               inetd
                    532: fi
1.1       deraadt   533:
1.52      deraadt   534: # $rarpd_flags is imported from /etc/rc.conf;
1.1       deraadt   535: # If $rarpd_flags == NO or /etc/ethers doesn't exist, then
                    536: # rarpd isn't run.
1.67      millert   537: if [ "X${rarpd_flags}" != X"NO" -a -s /etc/ethers ]; then
1.1       deraadt   538:        echo -n ' rarpd';               rarpd ${rarpd_flags}
                    539: fi
                    540:
1.52      deraadt   541: # $bootparamd_flags is imported from /etc/rc.conf;
1.1       deraadt   542: # If $bootparamd_flags == NO or /etc/bootparams doesn't exist, then
                    543: # bootparamd isn't run.
1.67      millert   544: if [ "X${bootparamd_flags}" != X"NO" -a -s /etc/bootparams ]; then
1.1       deraadt   545:        echo -n ' rpc.bootparamd';      rpc.bootparamd ${bootparamd_flags}
                    546: fi
                    547:
1.52      deraadt   548: # $rbootd_flags is imported from /etc/rc.conf;
1.1       deraadt   549: # If $rbootd_flags == NO or /etc/rbootd.conf doesn't exist, then
                    550: # rbootd isn't run.
1.67      millert   551: if [ "X${rbootd_flags}" != X"NO" -a -s /etc/rbootd.conf ]; then
1.1       deraadt   552:        echo -n ' rbootd';              rbootd ${rbootd_flags}
1.56      maja      553: fi
                    554:
                    555: # $mopd_flags is imported from /etc/rc.conf;
                    556: # If $mopd_flags == NO or /tftpboot/mop doesn't exist, then
                    557: # mopd isn't run.
                    558: if [ "X${mopd_flags}" != X"NO" -a -d /tftpboot/mop ]; then
                    559:        echo -n ' mopd';                mopd ${mopd_flags}
1.114     deraadt   560: fi
                    561:
1.167     deraadt   562: if [ X"${sshd_flags}" != X"NO" ]; then
1.201     deraadt   563:        echo -n ' sshd';                /usr/sbin/sshd ${sshd_flags};
1.1       deraadt   564: fi
                    565:
                    566: echo '.'
1.178     mickey    567:
                    568: if [ -f /etc/wsconsctl.conf ]; then
                    569: (
                    570:        # delete comments and blank lines
                    571:        set -- `stripcom /etc/wsconsctl.conf`
                    572:        while [ $# -ge 1 ] ; do
                    573:                wsconsctl -w $1
                    574:                shift
                    575:        done
                    576: )
                    577: fi
1.1       deraadt   578:
1.12      deraadt   579: if [ -f /sbin/kbd -a -f /etc/kbdtype ]; then
                    580:        kbd `cat /etc/kbdtype`
1.175     hin       581: fi
                    582:
                    583: # KerberosV master KDC
                    584: if [ X${krb5_master_kdc} = X"YES" ]; then
                    585:        echo 'KerberosV master KDC'
                    586:        /usr/libexec/kdc &
                    587:        /usr/libexec/kadmind &
                    588:        /usr/libexec/kpasswdd &
                    589: fi
                    590:
                    591: # KerberosV slave KDC
                    592: if [ X${krb5_slave_kdc} = X"YES" ]; then
                    593:        echo 'KerberosV slave KDC'
                    594:        /usr/libexec/kdc &
                    595:        # Remember to enable hpropd in inetd.conf
1.17      deraadt   596: fi
                    597:
1.72      deraadt   598: [ -f /etc/rc.local ] && . /etc/rc.local
1.73      millert   599:
                    600: echo -n standard daemons:
1.87      marc      601:
                    602: # $apmd_flags is imported from /etc/rc.conf;
                    603: # don't run daemon if $apmd_flags == NO or /usr/sbin/apmd doesn't exist
                    604: if [ "X${apmd_flags}" != X"NO" -a -x /usr/sbin/apmd ]; then
                    605:         echo -n ' apmd';        /usr/sbin/apmd ${apmd_flags}
1.116     deraadt   606: fi
                    607:
                    608: if [ -x /usr/sbin/screenblank ]; then
                    609:        echo -n ' screenblank'; /usr/sbin/screenblank
1.87      marc      610: fi
                    611:
1.73      millert   612: echo -n ' cron';               cron
1.87      marc      613:
1.73      millert   614: echo '.'
1.1       deraadt   615:
                    616: date
1.71      deraadt   617:
1.168     deraadt   618: if [ "X${wsmoused_flags}" != X"NO" -a -x /usr/sbin/wsmoused ]; then
1.169     deraadt   619:        echo 'starting wsmoused...';    /usr/sbin/wsmoused ${wsmoused_flags}
1.155     aaron     620: fi
                    621:
1.71      deraadt   622: # Alternatively, on some architectures, xdm may be started in /etc/ttys.
                    623: if [ "X${xdm_flags}" != X"NO" ]; then
1.92      downsj    624:        echo 'starting xdm...';         /usr/X11R6/bin/xdm ${xdm_flags}
1.71      deraadt   625: fi
                    626:
1.1       deraadt   627: exit 0
1.90      art       628: