minix/etc/rc

176 lines
3.8 KiB
Plaintext
Raw Normal View History

2005-04-21 16:53:53 +02:00
# /etc/rc - System startup script run by init before going multiuser.
umask 022
TERM="${TERM-minix}"
PATH=/usr/local/bin:/bin:/usr/bin:/usr/sbin
RC_TZ=/etc/rc.timezone
2005-04-21 16:53:53 +02:00
export TERM PATH
usage()
{
echo >&2 "Usage: $0 [-saf] start|stop|down"
exec intr sh
}
up()
{
service=$1
2005-11-28 16:39:01 +01:00
shift
# Function to dynamically start a system service
echo -n " $service"
2005-11-28 16:39:01 +01:00
service up /sbin/$service "$@"
}
2005-04-21 16:53:53 +02:00
while getopts 'saf' opt
do
case $opt in
s) sflag=t ;; # Single user
a) aflag=t ;; # Ask for /usr
f) fflag=t ;; # Force a full file system check
*) usage
esac
done
shift `expr $OPTIND - 1`
case "$#:$1" in
1:start|1:stop|1:down)
action=$1
;;
*) usage
esac
case $action in
start)
2005-08-11 15:22:31 +02:00
echo -n "Multiuser startup in progress ...:"
2005-04-21 16:53:53 +02:00
# National keyboard?
test -f /etc/keymap && loadkeys /etc/keymap
2005-11-28 16:39:01 +01:00
up is -period 5HZ
echo .
2005-04-21 16:53:53 +02:00
# Set timezone.
export TZ=GMT0
if [ -f "$RC_TZ" ]
then . "$RC_TZ"
fi
2005-04-21 16:53:53 +02:00
# Try to read the hardware real-time clock, otherwise do it manually.
readclock || intr date -q
# Initialize files.
printroot >/etc/mtab # /etc/mtab keeps track of mounts
>/etc/utmp # /etc/utmp keeps track of logins
# /etc/fstab lists the root, tmp and usr devices.
. /etc/fstab
# Any swapspace on a device?
test "$swap" : '/dev/' && mount -s $swap
# Are we booting from CD?
bootcd="`/bin/sysenv bootcd`"
# If booting from CD, /usr has to be mounted readonly.
# Also, $usr won't be specified correctly in the
# fstab (the CD could be anywhere), so we decide
# where it is based on sysenv (set by FS when probing for CD).
if [ "$bootcd" = 1 ]
then
#imagedev="`/bin/sysenv cdproberoot`"
#usrdev="`expr $imagedev + 1`"
usr_roflag="-r"
usr="$cddev"p2
echo "Setting /usr on cd is $usr"
fi
2005-04-21 16:53:53 +02:00
# Mount the /usr partition unless this is a single floppy Minix.
if [ ! -d /usr/bin ]
then
if [ "$aflag" -o "$usr" = unknown ]
then
# We need to ask what the /usr du jour is.
intr sh -c '
echo -n "Finish the name of device to mount as /usr: /dev/"
read usr
echo "usr=/dev/$usr" >/tmp/usr'
. /tmp/usr
fi
mount $usr_roflag $usr /usr || {
2005-04-21 16:53:53 +02:00
echo "\
Please try to mount something else as /usr, then hit CTRL-D to continue startup.
Mount $usr /usr failed -- Single user."
intr sh
}
rm -f /tmp/usr
fi
# Check if the system crashed.
if shutdown -C
then
echo
echo "The system was not properly shut down. Checking file systems."
fflag=t
fi
if [ "$fflag" ]
then
umount $usr
2005-10-04 16:35:36 +02:00
echo "fsck / - $root"
2005-04-21 16:53:53 +02:00
intr fsck -r $root
2005-10-04 16:35:36 +02:00
echo "fsck /usr - $usr"
2005-04-21 16:53:53 +02:00
intr fsck -r $usr
2005-08-31 18:29:56 +02:00
if [ ! -z "$home" ]
2005-10-04 16:35:36 +02:00
then echo "fsck /home - $home"
intr fsck -r $home
2005-08-31 18:29:56 +02:00
fi
2005-04-21 16:53:53 +02:00
mount $usr /usr
2005-09-01 18:26:22 +02:00
fi
if [ ! -z "$home" ]
2005-09-01 18:58:19 +02:00
then mount $home /home || echo "WARNING: couldn't mount $home on /home"
2005-04-21 16:53:53 +02:00
fi
# This file is necessary for above 'shutdown -C' check.
# (Silence stderr in case of running from cd.)
touch /usr/adm/wtmp 2>/dev/null
2005-04-21 16:53:53 +02:00
if [ "$sflag" ]
then
echo "Single user."
intr sh
fi
# Any swapspace on a file?
test -n "$swap" -a ! "$swap" : '/dev/' && mount -s $swap
case "`printroot -r`":$bootcd in
/dev/ram:)
# Remove boot-only things to make space,
# unless booting from CD, in which case we need them.
rm -rf /boot
# put the compiler on ram
cp /usr/lib/em* /usr/lib/cpp* /lib
2005-04-21 16:53:53 +02:00
esac
# Things should be alright now.
;;
down|stop)
sync
# Tell RS server we're going down.
service shutdown
;;
2005-04-21 16:53:53 +02:00
esac
# Further initialization.
test -f /usr/etc/rc && sh /usr/etc/rc $action
test -f /usr/local/etc/rc && sh /usr/local/etc/rc $action
2006-09-08 15:20:57 +02:00
#test -f /etc/rc.rescue && sh /etc/rc.rescue $action
2005-04-21 16:53:53 +02:00
# Any messages?
test "$action" = start -a -f /etc/issue && cat /etc/issue
2005-08-31 18:29:56 +02:00
2005-04-21 16:53:53 +02:00
exit 0