1993-11-07 01:19:06 +00:00
|
|
|
#!/bin/sh
|
1998-07-28 01:15:12 +00:00
|
|
|
# $Id: rc,v 1.146 1998/06/22 06:34:12 jkoshy Exp $
|
1993-11-07 01:19:06 +00:00
|
|
|
# From: @(#)rc 5.27 (Berkeley) 6/5/91
|
1993-06-20 13:41:45 +00:00
|
|
|
|
|
|
|
# System startup script run by init on autoboot
|
|
|
|
# or after single-user.
|
|
|
|
# Output and error are redirected to console by init,
|
|
|
|
# and the console is the controlling terminal.
|
|
|
|
|
1995-05-11 21:11:17 +00:00
|
|
|
# Note that almost all the user-configurable behavior is no longer in
|
1997-04-27 03:59:19 +00:00
|
|
|
# this file, but rather in /etc/rc.conf. Please check this file
|
1995-05-11 21:11:17 +00:00
|
|
|
# first before contemplating any changes here.
|
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
stty status '^T'
|
|
|
|
|
|
|
|
# Set shell to ignore SIGINT (2), but not children;
|
|
|
|
# shell catches SIGQUIT (3) and returns to single user after fsck.
|
|
|
|
trap : 2
|
|
|
|
trap : 3 # shouldn't be needed
|
|
|
|
|
|
|
|
HOME=/; export HOME
|
1996-12-19 18:06:35 +00:00
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
|
1993-06-20 13:41:45 +00:00
|
|
|
export PATH
|
|
|
|
|
1996-05-03 05:37:04 +00:00
|
|
|
# Configure ccd devices.
|
1997-04-27 03:59:19 +00:00
|
|
|
if [ -f /etc/ccd.conf ]; then
|
1996-05-03 05:37:04 +00:00
|
|
|
ccdconfig -C
|
|
|
|
fi
|
|
|
|
|
1994-10-25 08:23:02 +00:00
|
|
|
swapon -a
|
|
|
|
|
1997-04-27 03:59:19 +00:00
|
|
|
if [ $1x = autobootx ]; then
|
1993-06-20 13:41:45 +00:00
|
|
|
echo Automatic reboot in progress...
|
|
|
|
fsck -p
|
|
|
|
case $? in
|
|
|
|
0)
|
|
|
|
;;
|
|
|
|
2)
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
4)
|
|
|
|
reboot
|
|
|
|
echo "reboot failed... help!"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
8)
|
|
|
|
echo "Automatic file system check failed... help!"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
12)
|
|
|
|
echo "Reboot interrupted"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
130)
|
|
|
|
# interrupt before catcher installed
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unknown error in reboot"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
1994-08-21 04:28:44 +00:00
|
|
|
else
|
|
|
|
echo Skipping disk checks ...
|
1993-06-20 13:41:45 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
trap "echo 'Reboot interrupted'; exit 1" 3
|
|
|
|
|
1994-09-23 18:02:22 +00:00
|
|
|
# root must be read/write both for NFS diskless and for VFS LKMs before
|
|
|
|
# proceeding any further.
|
|
|
|
mount -u -o rw /
|
1995-05-15 08:39:37 +00:00
|
|
|
if [ $? != 0 ]; then
|
|
|
|
echo "Filesystem mount failed, startup aborted"
|
|
|
|
exit 1
|
|
|
|
fi
|
1994-06-06 17:45:37 +00:00
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
umount -a >/dev/null 2>&1
|
1995-05-15 08:39:37 +00:00
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
mount -a -t nonfs
|
1995-05-15 08:39:37 +00:00
|
|
|
if [ $? != 0 ]; then
|
|
|
|
echo "Filesystem mount failed, startup aborted"
|
|
|
|
exit 1
|
|
|
|
fi
|
1993-06-20 13:41:45 +00:00
|
|
|
|
1997-04-27 03:59:19 +00:00
|
|
|
# If there is a global system configuration file, suck it in.
|
|
|
|
if [ -f /etc/rc.conf ]; then
|
|
|
|
. /etc/rc.conf
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If old file exists, whine until they fix it.
|
|
|
|
if [ -f /etc/sysconfig ]; then
|
|
|
|
echo "Warning: /etc/sysconfig has been replaced by /etc/rc.conf."
|
|
|
|
echo "You should switch to /etc/rc.conf ASAP to eliminate this warning."
|
|
|
|
fi
|
|
|
|
|
1994-11-02 09:43:38 +00:00
|
|
|
adjkerntz -i
|
1993-12-17 04:20:30 +00:00
|
|
|
|
1998-06-02 11:02:16 +00:00
|
|
|
rm -rf /var/run/*
|
1997-06-04 20:02:57 +00:00
|
|
|
|
1997-01-02 16:28:33 +00:00
|
|
|
# Keep a copy of the boot messages around
|
1997-04-27 03:59:19 +00:00
|
|
|
dmesg > /var/run/dmesg.boot
|
1997-01-02 16:28:33 +00:00
|
|
|
|
1996-08-21 23:15:37 +00:00
|
|
|
# Add additional swapfile, if configured.
|
1996-11-03 14:41:58 +00:00
|
|
|
if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
|
1996-08-21 23:15:37 +00:00
|
|
|
echo "Adding $swapfile as additional swap."
|
1997-04-27 03:59:19 +00:00
|
|
|
vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
|
1996-08-21 23:15:37 +00:00
|
|
|
fi
|
|
|
|
|
1994-06-04 00:44:00 +00:00
|
|
|
# configure serial devices
|
1995-03-21 15:20:48 +00:00
|
|
|
if [ -f /etc/rc.serial ]; then
|
1995-03-24 00:01:21 +00:00
|
|
|
. /etc/rc.serial
|
1994-06-04 00:44:00 +00:00
|
|
|
fi
|
|
|
|
|
1996-03-12 15:39:26 +00:00
|
|
|
# start up PC-card configuration
|
1996-03-14 18:24:07 +00:00
|
|
|
if [ -f /etc/rc.pccard ]; then
|
|
|
|
. /etc/rc.pccard
|
1996-03-12 15:39:26 +00:00
|
|
|
fi
|
|
|
|
|
1997-04-27 03:59:19 +00:00
|
|
|
# start up the initial network configuration.
|
|
|
|
if [ -f /etc/rc.network ]; then
|
|
|
|
. /etc/rc.network # We only need to do this once.
|
|
|
|
network_pass1
|
1995-03-29 03:42:21 +00:00
|
|
|
fi
|
|
|
|
|
1997-09-13 09:29:21 +00:00
|
|
|
mount -a -t nfs
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
|
|
|
|
# Whack the pty perms back into shape.
|
1996-12-23 00:32:15 +00:00
|
|
|
chmod 666 /dev/tty[pqrsPQRS]*
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
|
|
|
|
# clean up left-over files
|
|
|
|
rm -f /etc/nologin
|
|
|
|
rm -f /var/spool/lock/*
|
1995-04-11 18:36:10 +00:00
|
|
|
rm -rf /var/spool/uucp/.Temp/*
|
1996-05-08 09:25:57 +00:00
|
|
|
(cd /var/run && { cp /dev/null utmp; chmod 644 utmp; })
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
|
1997-11-16 12:52:17 +00:00
|
|
|
#
|
|
|
|
# Clearing /tmp at boot-time seems to have a long tradition. It doesn't
|
|
|
|
# help in any way for long-living systems, and it might accidentally
|
|
|
|
# clobber files you would rather like to have preserved after a crash
|
|
|
|
# (if not using mfs /tmp anyway).
|
|
|
|
#
|
|
|
|
# See also the example of another cleanup policy in /etc/periodic/daily.
|
|
|
|
#
|
|
|
|
if [ "X${clear_tmp_enable}" = X"YES" ]; then
|
|
|
|
echo clearing /tmp
|
|
|
|
|
|
|
|
# prune quickly with one rm, then use find to clean up /tmp/[lq]*
|
|
|
|
# (not needed with mfs /tmp, but doesn't hurt there...)
|
|
|
|
(cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
|
|
|
|
find -d . ! -name . ! -name lost+found ! -name quotas -exec rm -rf -- {} \;)
|
|
|
|
|
|
|
|
# Also remove X lock files since it will prevent you from
|
|
|
|
# restarting X11 after a system crash.
|
|
|
|
rm -f /tmp/.X*-lock /tmp/.X11-unix/*
|
|
|
|
fi
|
|
|
|
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
# snapshot any kernel -c changes back to disk
|
|
|
|
echo 'recording kernel -c changes'
|
1997-05-01 05:57:29 +00:00
|
|
|
dset -q
|
1994-01-08 17:49:47 +00:00
|
|
|
|
1997-05-01 05:57:29 +00:00
|
|
|
echo -n 'additional daemons:'
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
# start system logging and name service (named needs to start before syslogd
|
|
|
|
# if you don't have a /etc/resolv.conf)
|
|
|
|
#
|
1997-05-03 11:22:17 +00:00
|
|
|
if [ "X${syslogd_enable}" = X"YES" ]; then
|
1997-04-01 01:00:35 +00:00
|
|
|
# Transitional symlink (for the next couple of years :) until all
|
|
|
|
# binaries had a chance to move towards /var/run/log.
|
|
|
|
if [ ! -h /dev/log ] ; then
|
|
|
|
# might complain for r/o root f/s
|
|
|
|
ln -sf /var/run/log /dev/log
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f /var/run/log
|
1997-05-01 05:57:29 +00:00
|
|
|
echo -n ' syslogd'; syslogd ${syslogd_flags}
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "X${tickadj_enable}" = X"YES" ]; then
|
1997-05-03 11:22:17 +00:00
|
|
|
echo -n ' tickadj'; tickadj ${tickadj_flags--Aq}
|
1996-10-28 08:28:02 +00:00
|
|
|
fi
|
1997-05-01 05:57:29 +00:00
|
|
|
echo '.'
|
1995-03-21 15:20:48 +00:00
|
|
|
|
1998-01-08 17:08:22 +00:00
|
|
|
# enable dumpdev so that savecore can see it
|
|
|
|
# /var/crash should be a directory or a symbolic link
|
|
|
|
# to the crash directory if core dumps are to be saved.
|
|
|
|
if [ "X${dumpdev}" != X"NO" -a -e ${dumpdev} -a -d /var/crash ]; then
|
|
|
|
dumpon ${dumpdev}
|
|
|
|
echo -n checking for core dump...
|
|
|
|
savecore /var/crash
|
|
|
|
fi
|
|
|
|
|
1997-04-27 03:59:19 +00:00
|
|
|
if [ -n "$network_pass1_done" ]; then
|
|
|
|
network_pass2
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
fi
|
1995-03-22 03:29:55 +00:00
|
|
|
|
1996-10-08 20:00:44 +00:00
|
|
|
# Check the quotas (must be after ypbind if using NIS)
|
|
|
|
if [ "X${check_quotas}" = X"YES" ]; then
|
|
|
|
echo -n 'checking quotas:'
|
|
|
|
quotacheck -a
|
|
|
|
echo ' done.'
|
|
|
|
quotaon -a
|
1995-03-22 03:29:55 +00:00
|
|
|
fi
|
|
|
|
|
1997-04-27 03:59:19 +00:00
|
|
|
if [ -n "$network_pass2_done" ]; then
|
|
|
|
network_pass3
|
1996-10-08 20:00:44 +00:00
|
|
|
fi
|
|
|
|
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
|
|
|
|
# build ps databases
|
|
|
|
kvm_mkdb
|
|
|
|
dev_mkdb
|
|
|
|
|
|
|
|
# check the password temp/lock file
|
|
|
|
if [ -f /etc/ptmp ]
|
|
|
|
then
|
|
|
|
logger -s -p auth.err \
|
|
|
|
"password file may be incorrect -- /etc/ptmp exists"
|
|
|
|
fi
|
|
|
|
|
1997-04-27 03:59:19 +00:00
|
|
|
if [ "X${accounting_enable}" = X"YES" -a -d /var/account ]; then
|
1995-11-01 00:22:45 +00:00
|
|
|
echo 'turning on accounting'
|
|
|
|
if [ ! -e /var/account/acct ]; then
|
1997-05-03 11:22:17 +00:00
|
|
|
touch /var/account/acct
|
1995-11-01 00:22:45 +00:00
|
|
|
fi
|
|
|
|
accton /var/account/acct
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
fi
|
|
|
|
|
1997-07-13 13:22:15 +00:00
|
|
|
# Make shared lib searching a little faster. Leave /usr/lib first if you
|
|
|
|
# add your own entries or you may come to grief.
|
1998-05-26 20:12:56 +00:00
|
|
|
_LDC=/usr/lib/aout
|
1997-12-27 19:46:54 +00:00
|
|
|
for i in $ldconfig_paths; do
|
|
|
|
if test -d $i; then
|
|
|
|
_LDC="${_LDC} $i"
|
|
|
|
fi
|
|
|
|
done
|
1997-04-27 03:59:19 +00:00
|
|
|
echo 'setting ldconfig path:' ${_LDC}
|
|
|
|
ldconfig ${_LDC}
|
1995-03-22 03:29:55 +00:00
|
|
|
|
1996-07-18 19:09:06 +00:00
|
|
|
# Now start up miscellaneous daemons that don't belong anywhere else
|
|
|
|
#
|
1997-05-01 05:57:29 +00:00
|
|
|
echo -n starting standard daemons:
|
1997-09-13 21:07:12 +00:00
|
|
|
if [ "X${inetd_enable}" != X"NO" ]; then
|
1997-06-18 16:01:19 +00:00
|
|
|
echo -n ' inetd'; inetd ${inetd_flags}
|
|
|
|
fi
|
|
|
|
|
1997-09-13 21:07:12 +00:00
|
|
|
if [ "X${cron_enable}" != X"NO" ]; then
|
1997-06-18 16:01:19 +00:00
|
|
|
echo -n ' cron'; cron
|
|
|
|
fi
|
1996-07-18 19:09:06 +00:00
|
|
|
|
1997-04-27 03:59:19 +00:00
|
|
|
if [ "X${lpd_enable}" = X"YES" ]; then
|
1997-05-19 07:46:51 +00:00
|
|
|
echo -n ' printer'; lpd ${lpd_flags}
|
1996-07-18 19:09:06 +00:00
|
|
|
fi
|
|
|
|
|
1997-04-27 03:59:19 +00:00
|
|
|
if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then
|
1997-05-07 12:35:03 +00:00
|
|
|
echo -n ' sendmail'; /usr/sbin/sendmail ${sendmail_flags}
|
1996-07-13 17:27:39 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo '.'
|
|
|
|
|
This is the rc work as provided by pts, I will me makeing some additional
changes to it based upon other outstanding bug reports and commits made
after his work.
Comments:
(a) sysconfig is still used to do all configuration. I was not going to
change that out from under you.... a user never need edit netstart
or rc* unless they're being very weird.
(b) rc.maint has been folded back into rc. It is just unworkable as
a separate chunk because of ordering bogosities
(c) netstart does what it says... it starts up enough of the network to
get up, it doesn't start every bloody daemon that might talk to a
socket... netstart ifconfig's the devices and sets up routing if
configured to do so.
(d) nfs disks are mounted immediately after netstart completes
(e) syslog is started as early as possible (right after nfs) so that error
messages can get logged to remote syslog servers properly
(f) named is started (there is an argument that says that named should be
started before syslogd because if you are the dns server for your domain,
you'd like named to resolve remote hosts in syslog.conf, but this is
a minority case and the trivial workarround is to put the syslog host
in /etc/hosts or use an /etc/resolv.conf -- why? because you want syslog
to catch named errors, which is a MUCH more important and likely occurance)
(g) NOW all of the rest of the network daemons such as the time stuff, RPC,
NIS, NFS, Kerberos and inetd are started
(h) the rest of the generic stuff is done (cron/printer/sendmail)
(i) shared libraries are set
(j) /etc/rc.i386 is run (this does FreeBSD/386 specific stuff like ibcs2,
xtend, and all of the syscons stuff
(this is actually started as /etc/rc.`uname -m`
(k) the syscons stuff has gotten a serious cleaning to make it consistent
with rc conventions
(l) rc.local has had the comments about syscons removed (they are not relevant
to this file now) and the full name of the kernel has been restored to
/etc/motd
Submitted by: pts
1995-03-30 06:26:19 +00:00
|
|
|
# configure implementation specific stuff
|
|
|
|
arch=`uname -m`
|
1997-05-04 22:33:17 +00:00
|
|
|
if [ -f /etc/rc.${arch} ]; then
|
|
|
|
. /etc/rc.${arch}
|
|
|
|
fi
|
1995-03-24 00:16:26 +00:00
|
|
|
|
1996-06-24 19:00:28 +00:00
|
|
|
# Recover vi editor files.
|
1996-11-01 09:45:51 +00:00
|
|
|
vibackup=`echo /var/tmp/vi.recover/vi.*`
|
|
|
|
if [ "$vibackup" != '/var/tmp/vi.recover/vi.*' ]; then
|
1996-06-24 19:00:28 +00:00
|
|
|
echo 'Recovering vi editor sessions'
|
1996-11-01 09:45:51 +00:00
|
|
|
for i in $vibackup; do
|
|
|
|
# Only test files that are readable.
|
|
|
|
if test ! -r $i; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Unmodified nvi editor backup files either have the
|
|
|
|
# execute bit set or are zero length. Delete them.
|
|
|
|
if test -x $i -o ! -s $i; then
|
|
|
|
rm -f $i
|
|
|
|
fi
|
1996-06-24 19:00:28 +00:00
|
|
|
done
|
1996-11-01 09:45:51 +00:00
|
|
|
|
|
|
|
# It is possible to get incomplete recovery files, if the editor
|
|
|
|
# crashes at the right time.
|
|
|
|
virecovery=`echo /var/tmp/vi.recover/recover.*`
|
|
|
|
if [ "$virecovery" != "/var/tmp/vi.recover/recover.*" ]; then
|
|
|
|
for i in $virecovery; do
|
|
|
|
# Only test files that are readable.
|
|
|
|
if test ! -r $i; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Delete any recovery files that are zero length,
|
|
|
|
# corrupted, or that have no corresponding backup file.
|
|
|
|
# Else send mail to the user.
|
|
|
|
recfile=`awk '/^X-vi-recover-path:/{print $2}' < $i`
|
|
|
|
if test -n "$recfile" -a -s "$recfile"; then
|
|
|
|
sendmail -t < $i
|
|
|
|
else
|
|
|
|
rm -f $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
1996-06-24 19:00:28 +00:00
|
|
|
fi
|
|
|
|
|
1998-07-28 01:15:12 +00:00
|
|
|
# make a bounds file for msgs(1) if there isn't one already
|
|
|
|
if [ ! -f /var/msgs/bounds ]; then
|
|
|
|
echo 0 > /var/msgs/bounds
|
|
|
|
fi
|
|
|
|
|
1995-12-28 01:24:04 +00:00
|
|
|
# for each valid dir in $local_startup, search for init scripts matching *.sh
|
|
|
|
if [ "X${local_startup}" != X"NO" ]; then
|
1997-07-13 13:22:15 +00:00
|
|
|
echo -n 'Local package initialization:'
|
1995-12-28 01:24:04 +00:00
|
|
|
for dir in ${local_startup}; do
|
|
|
|
[ -d ${dir} ] && for script in ${dir}/*.sh; do
|
|
|
|
[ -x ${script} ] && ${script} start
|
|
|
|
done
|
1995-09-18 07:38:18 +00:00
|
|
|
done
|
1996-06-15 17:04:48 +00:00
|
|
|
echo .
|
1995-03-23 01:25:19 +00:00
|
|
|
fi
|
1993-06-20 13:41:45 +00:00
|
|
|
|
1995-09-18 07:38:18 +00:00
|
|
|
# Do traditional (but rather obsolete) rc.local file if it exists.
|
1997-06-25 11:48:47 +00:00
|
|
|
[ -f /etc/rc.local ] && sh /etc/rc.local
|
1995-09-18 07:38:18 +00:00
|
|
|
|
1998-06-22 06:34:12 +00:00
|
|
|
# Raise kernel security level. This should be done only after `fsck' has
|
|
|
|
# repaired local file systems if you want the securelevel to be greater than 1.
|
|
|
|
if [ "X${kern_securelevel_enable}" != X"NO" -a "${kern_securelevel}" -ge 0 ];
|
|
|
|
then
|
|
|
|
echo 'Raising kernel security level'
|
|
|
|
sysctl -w kern.securelevel=${kern_securelevel}
|
|
|
|
fi
|
|
|
|
|
1993-06-20 13:41:45 +00:00
|
|
|
date
|
|
|
|
exit 0
|