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

Annotation of src/etc/rc, Revision 1.35

1.35    ! niklas      1: #      $OpenBSD: rc,v 1.34 1997/04/22 23:04:57 deraadt 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:
                      8: stty status '^T'
                      9:
                     10: # Set shell to ignore SIGINT (2), but not children;
                     11: # shell catches SIGQUIT (3) and returns to single user after fsck.
                     12: trap : 2
                     13: trap : 3       # shouldn't be needed
                     14:
                     15: HOME=/; export HOME
                     16: PATH=/sbin:/bin:/usr/sbin:/usr/bin
                     17: export PATH
                     18:
                     19: # Configure ccd devices.
1.17      deraadt    20: if [ -f /etc/ccd.conf ]; then
1.1       deraadt    21:        ccdconfig -C
                     22: fi
                     23:
1.17      deraadt    24: if [ -e /fastboot ]; then
1.1       deraadt    25:        echo "Fast boot: skipping disk checks."
1.17      deraadt    26: elif [ $1x = autobootx ]; then
1.1       deraadt    27:        echo "Automatic boot in progress: starting file system checks."
1.31      millert    28:        fsck -p
1.1       deraadt    29:        case $? in
                     30:        0)
                     31:                ;;
                     32:        2)
                     33:                exit 1
                     34:                ;;
                     35:        4)
                     36:                echo "Rebooting..."
                     37:                reboot
                     38:                echo "Reboot failed; help!"
                     39:                exit 1
                     40:                ;;
                     41:        8)
                     42:                echo "Automatic file system check failed; help!"
                     43:                exit 1
                     44:                ;;
                     45:        12)
                     46:                echo "Boot interrupted."
                     47:                exit 1
                     48:                ;;
                     49:        130)
                     50:                # interrupt before catcher installed
                     51:                exit 1
                     52:                ;;
                     53:        *)
                     54:                echo "Unknown error; help!"
                     55:                exit 1
                     56:                ;;
                     57:        esac
                     58: fi
                     59:
                     60: trap "echo 'Boot interrupted.'; exit 1" 3
                     61:
                     62: swapon -a
                     63:
                     64: umount -a >/dev/null 2>&1
                     65: mount -a -t nonfs
                     66: rm -f /fastboot                # XXX (root now writeable)
                     67:
                     68: # set flags on ttys.  (do early, in case they use tty for SLIP in netstart)
                     69: echo 'setting tty flags'
                     70: ttyflags -a
                     71:
                     72: # set hostname, turn on network
                     73: echo 'starting network'
                     74: . /etc/netstart
                     75:
                     76: mount /usr >/dev/null 2>&1
                     77: mount /var >/dev/null 2>&1
1.29      deraadt    78:
                     79: # /etc/ifaliases, if it exists, contains the names of additional IP
                     80: # addresses for each interface. It is formatted as a series of lines
                     81: # that contain
                     82: #      interface address netmask
                     83: if [ -f /etc/ifaliases ]; then
                     84: (
                     85:        # delete comments and blank lines
                     86:        set -- `sed -e 's/#.*$//' /etc/ifaliases | grep -v '^$'`
                     87:        while [ $# -ge 3 ] ; do
                     88:                ifconfig $1 inet alias $2 netmask $3
                     89:                route add $2 localhost
                     90:                shift 3
                     91:        done
                     92: )
                     93: fi
1.1       deraadt    94:
1.5       dm         95: if [ X"${ipfilter}" = X"YES" -a X"${ipmon_flags}" != X"NO" ]; then
                     96:        ipmon ${ipmon_flags} &
1.25      deraadt    97: fi
                     98:
                     99: if [ X"${rfc1323}" = X"NO" ]; then
                    100:        echo 'disabling rfc1323';       sysctl -w net.inet.tcp.rfc1323=0
1.5       dm        101: fi
                    102:
1.1       deraadt   103: # clean up left-over files
                    104: rm -f /etc/nologin
                    105: rm -f /var/spool/lock/LCK.*
                    106: rm -f /var/spool/uucp/STST/*
                    107: (cd /var/run && { rm -rf -- *; install -c -m 664 -g utmp /dev/null utmp; })
                    108:
                    109: echo -n 'starting rpc daemons:'
1.24      millert   110:
                    111: # $portmap is imported from /etc/netstart;
                    112: # if $portmap == YES, the portmapper is started.
                    113: if [ X"${portmap}" = X"YES" ]; then
1.23      deraadt   114:        echo -n ' portmap';             portmap
                    115: fi
1.1       deraadt   116:
1.9       deraadt   117: if [ -d /var/yp/binding ]; then
1.8       deraadt   118:        if [ -d /var/yp/`domainname` ]; then
                    119:                # yp server capabilities needed...
1.27      deraadt   120:                echo -n ' ypserv';              ypserv
1.16      deraadt   121:                #echo -n ' ypxfrd';             ypxfrd
1.21      deraadt   122:        fi
                    123:
                    124:        echo -n ' ypbind';              ypbind
1.8       deraadt   125:
1.21      deraadt   126:        if [ -d /var/yp/`domainname` ]; then
1.8       deraadt   127:                # if we are the master server, run rpc.yppasswdd
                    128:                _host1=`ypwhich -m passwd 2> /dev/null`
                    129:                _host2=`hostname`
1.15      deraadt   130:                if [ `grep '^lookup' /etc/resolv.conf | grep yp | wc -c` -ne 0 ]; then
1.8       deraadt   131:                        _host1=`ypmatch $_host1 hosts | cut -d' ' -f2`
                    132:                        _host2=`ypmatch $_host2 hosts | cut -d' ' -f2 | head -1`
                    133:                else
                    134:                        _host1=`nslookup $_host1 | grep '^Name: ' | \
                    135:                            sed -e 's/^Name:    //'`
                    136:                        _host2=`nslookup $_host2 | grep '^Name: ' | \
                    137:                            sed -e 's/^Name:    //'`
                    138:                fi
1.13      deraadt   139:                if [ "$_host2" = "$_host1" ]; then
1.35    ! niklas    140:                        echo -n ' rpc.yppasswdd'
        !           141:                        rpc.yppasswdd ${yppasswdd_flags}
1.8       deraadt   142:                fi
1.7       deraadt   143:        fi
1.1       deraadt   144: fi
                    145:
                    146: # $nfs_server is imported from /etc/netstart;
                    147: # if $nfs_server == YES, the machine is setup for being an nfs server
                    148: if [ X${nfs_server} = X"YES" -a -r /etc/exports ]; then
                    149:        rm -f /var/db/mountdtab
                    150:        echo -n > /var/db/mountdtab
                    151:        echo -n ' mountd';              mountd
                    152:        echo -n ' nfsd';                nfsd -tun 4
                    153: fi
                    154:
                    155: # $nfs_client is imported from /etc/netstart;
                    156: # if $nfs_client == YES, the machine is setup for being an nfs client
                    157: if [ X${nfs_client} = X"YES" ]; then
                    158:        echo -n ' nfsiod';              nfsiod -n 4
                    159: fi
                    160:
                    161: if [ X${amd} = X"YES" -a -d ${amd_dir} -a -r ${amd_master} ]; then
                    162:        echo -n ' amd'
                    163:        amd -l syslog -x error,noinfo,nostats -p \
                    164:            -a ${amd_dir} `cat ${amd_master}` > /var/run/amd.pid
                    165: fi
                    166:
                    167: echo '.'
                    168: mount -a -t nfs
                    169:
                    170: echo -n 'starting system logger'
                    171: rm -f /dev/log
1.22      deraadt   172: syslogd
1.1       deraadt   173:
                    174: # $timed_flags is imported from /etc/netstart;
                    175: # if $timed_flags == NO, timed isn't run.
                    176: if [ "X${timed_flags}" != X"NO" ]; then
                    177:        echo -n ', time daemon'; timed $timed_flags
                    178: fi
                    179: echo '.'
                    180:
                    181: # /var/crash should be a directory or a symbolic link
                    182: # to the crash directory if core dumps are to be saved.
                    183: if [ -d /var/crash ]; then
                    184:        echo checking for core dump...
                    185:        savecore /var/crash
                    186: fi
                    187:
                    188:                                echo -n 'checking quotas:'
                    189: quotacheck -a
                    190:                                echo ' done.'
                    191: quotaon -a
                    192:
                    193: # build ps databases
                    194: echo 'building databases...'
1.2       deraadt   195: kvm_mkdb /bsd
1.1       deraadt   196: dev_mkdb
                    197:
                    198: chmod 666 /dev/tty[pqrs]*
                    199:
                    200: # check the password temp/lock file
1.17      deraadt   201: if [ -f /etc/ptmp ]; then
1.1       deraadt   202:        logger -s -p auth.err \
                    203:        'password file may be incorrect -- /etc/ptmp exists'
1.32      deraadt   204: fi
                    205:
1.33      millert   206: test -f /etc/rc.securelevel && . /etc/rc.securelevel
1.32      deraadt   207: if [ X${securelevel} != X"" ]; then
1.33      millert   208:        echo -n 'setting kernel security level: '
1.32      deraadt   209:        sysctl -w kern.securelevel=${securelevel}
1.1       deraadt   210: fi
                    211:
1.34      deraadt   212: # patch /etc/motd
                    213: if [ ! -f /etc/motd ]; then
                    214:        install -c -o root -g wheel -m 664 /dev/null /etc/motd
                    215: fi
                    216: T=/tmp/_motd
                    217: rm -f $T
                    218: sysctl -n kern.version | sed 1q > $T
                    219: echo "" >> $T
                    220: sed '1,/^$/d' < /etc/motd >> $T
                    221: cmp -s $T /etc/motd || cp $T /etc/motd
                    222: rm -f $T
                    223:
1.1       deraadt   224: virecovery=/var/tmp/vi.recover/recover.*
                    225: if [ "$virecovery" != "/var/tmp/vi.recover/recover.*" ]; then
                    226:        echo preserving editor files
                    227:        for i in $virecovery; do
                    228:                sendmail -t < $i
                    229:        done
                    230: fi
                    231:
                    232: echo clearing /tmp
                    233:
                    234: # prune quickly with one rm, then use find to clean up /tmp/[lq]*
                    235: # (not needed with mfs /tmp, but doesn't hurt there...)
                    236: (cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
                    237:     find . ! -name . ! -name lost+found ! -name quota.user \
                    238:        ! -name quota.group -exec rm -rf -- {} \; -type d -prune)
                    239:
                    240: if [ -f /var/account/acct ]; then
                    241:        echo 'turning on accounting';   accton /var/account/acct
                    242: fi
                    243:
                    244: echo -n standard daemons:
                    245: echo -n ' cron';               cron
                    246: echo '.'
                    247:
                    248: echo -n starting network daemons:
                    249:
                    250: # $gated and $routed_flags are imported from /etc/netstart.
                    251: # If $gated == YES, gated is used; otherwise routed.
                    252: # If $routed_flags == NO, routed isn't run.
                    253: if [ X${gated} = X"YES" -a -r /etc/gated.conf ]; then
                    254:        echo -n ' gated';               gated $gated_flags
                    255: elif [ "X${routed_flags}" != X"NO" ]; then
                    256:        echo -n ' routed';              routed $routed_flags
                    257: fi
                    258:
1.4       deraadt   259: # $mrouted_flags is imported from /etc/netstart;
                    260: # If $mrouted_flags == NO, then mrouted isn't run.
                    261: if [ "X${mrouted_flags}" != X"NO" ]; then
                    262:        echo -n ' mrouted';             mrouted $mrouted_flags
                    263: fi
                    264:
                    265: # $named_flags is imported from /etc/netstart;
1.1       deraadt   266: # if $named_flags != NO, named is run.
                    267: if [ "X${named_flags}" != X"NO" ]; then
                    268:        echo -n ' named';               named $named_flags
                    269: fi
                    270:
                    271: # $rwhod is imported from /etc/netstart;
                    272: # if $rwhod == YES, rwhod is run.
                    273: if [ X${rwhod} = X"YES" ]; then
                    274:        echo -n ' rwhod';               rwhod
                    275: fi
                    276:
1.23      deraadt   277:
                    278: if [ X${lpd} = X"YES" ]; then
                    279:        echo -n ' printer';             lpd
                    280: fi
1.1       deraadt   281:
                    282: # $sendmail_flags is imported from /etc/netstart;
                    283: # If $sendmail_flags == NO or /etc/sendmail.cf doesn't exist, then
1.6       deraadt   284: # sendmail isn't run.  We call sendmail with a full path so that
                    285: # SIGHUP works.
1.1       deraadt   286: if [ "X${sendmail_flags}" != X"NO" -a -r /etc/sendmail.cf ]; then
1.6       deraadt   287:        echo -n ' sendmail';            /usr/sbin/sendmail ${sendmail_flags}
1.1       deraadt   288: fi
                    289:
1.23      deraadt   290: if [ X${inetd} = X"YES" ]; then
                    291:        echo -n ' inetd';               inetd
                    292: fi
1.1       deraadt   293:
                    294: # $rarpd_flags is imported from /etc/netstart;
                    295: # If $rarpd_flags == NO or /etc/ethers doesn't exist, then
                    296: # rarpd isn't run.
                    297: if [ "X${rarpd_flags}" != X"NO" -a -r /etc/ethers ]; then
                    298:        echo -n ' rarpd';               rarpd ${rarpd_flags}
                    299: fi
                    300:
                    301: # $bootparamd_flags is imported from /etc/netstart;
                    302: # If $bootparamd_flags == NO or /etc/bootparams doesn't exist, then
                    303: # bootparamd isn't run.
                    304: if [ "X${bootparamd_flags}" != X"NO" -a -r /etc/bootparams ]; then
                    305:        echo -n ' rpc.bootparamd';      rpc.bootparamd ${bootparamd_flags}
                    306: fi
                    307:
                    308: # $rbootd_flags is imported from /etc/netstart;
                    309: # If $rbootd_flags == NO or /etc/rbootd.conf doesn't exist, then
                    310: # rbootd isn't run.
                    311: if [ "X${rbootd_flags}" != X"NO" -a -r /etc/rbootd.conf ]; then
                    312:        echo -n ' rbootd';              rbootd ${rbootd_flags}
                    313: fi
                    314:
                    315: echo '.'
                    316:
1.12      deraadt   317: if [ -f /sbin/kbd -a -f /etc/kbdtype ]; then
                    318:        kbd `cat /etc/kbdtype`
                    319: fi
1.17      deraadt   320:
                    321: if [ -f /sbin/ldconfig ]; then
                    322:        echo 'creating runtime link editor directory cache.'
1.26      deraadt   323:        _LIBS=
                    324:        if [ -d /usr/local/lib ]; then
                    325:                _LIBS="$_LIBS /usr/local/lib"
                    326:        fi
                    327:        if [ -d /usr/X11R6/lib ]; then
                    328:                _LIBS="$_LIBS /usr/X11R6/lib"
                    329:        fi
                    330:        ldconfig $_LIBS
1.17      deraadt   331: fi
                    332:
                    333: # Kerberos runs ONLY on the Kerberos server machine
                    334: if [ X${kerberos_server} = X"YES" ]; then
1.30      tholo     335:        echo 'kerberos server'
                    336:        kerberos >> /var/log/kerberos.log &
                    337:        kadmind -n >> /var/log/kadmind.log &
1.17      deraadt   338: fi
                    339:
                    340: . /etc/rc.local
1.1       deraadt   341:
                    342: date
                    343: exit 0