|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $Id: rcS.example,v 1.3 2001/12/04 06:32:19 freesource Exp $
|
|
|
|
# Used by the Example.yard template.
|
|
|
|
# /etc/rcS: System initialization script.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Start up kerneld if desired
|
|
|
|
#/sbin/kerneld
|
|
|
|
|
|
|
|
# Mount everything mentioned in fstab
|
|
|
|
# .. but proc needs to be mounted first, anyways.
|
|
|
|
mount -o remount /
|
|
|
|
mount -a
|
|
|
|
|
|
|
|
# Compute module dependencies
|
|
|
|
/sbin/depmod -a
|
|
|
|
|
|
|
|
# Set host name
|
|
|
|
/bin/hostname bootroot
|
|
|
|
|
|
|
|
# If you need to load a keyboard map, uncomment this line and
|
|
|
|
# fix the pathnames:
|
|
|
|
#/usr/sbin/loadkeys /usr/share/keymaps/i386/qwerty/defkeymap.kmap.gz
|
|
|
|
|
|
|
|
# create utmp if it doesn't already exist
|
|
|
|
( cd /var/run && \
|
|
|
|
find . ! -type d ! -name utmp ! -name innd.pid ! -name random-seed \
|
|
|
|
! -newer /etc/mtab -exec rm -f -- {} \; )
|
|
|
|
: > /var/run/utmp
|
|
|
|
if grep -q ^utmp: /etc/group
|
|
|
|
then
|
|
|
|
chmod 664 /var/run/utmp
|
|
|
|
chown root:utmp /var/run/utmp
|
|
|
|
fi
|
|
|
|
|
|
|
|
# create wtmp if it doesn't already exist
|
|
|
|
( cd /var/log && \
|
|
|
|
find . ! -type d ! -name wtmp \
|
|
|
|
! -newer /etc/mtab -exec rm -f -- {} \; )
|
|
|
|
: > /var/log/wtmp
|
|
|
|
if grep -q ^utmp: /etc/group
|
|
|
|
then
|
|
|
|
chmod 664 /var/log/wtmp
|
|
|
|
chown root:utmp /var/log/wtmp
|
|
|
|
fi
|