2005-04-25 15:50:26 +02:00
|
|
|
# /usr/etc/rc - continued system initialization.
|
|
|
|
|
2005-08-02 17:46:24 +02:00
|
|
|
RANDOM_FILE=/usr/adm/random.dat
|
2005-08-05 12:37:02 +02:00
|
|
|
LOCAL_FILE=/usr/etc/rc.local
|
2005-08-02 17:46:24 +02:00
|
|
|
|
2005-04-25 15:50:26 +02:00
|
|
|
case "$#:$1" in
|
|
|
|
1:start|1:stop|1:down)
|
|
|
|
action=$1
|
|
|
|
;;
|
|
|
|
*) echo >&2 "Usage: $0 start|stop|down"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
2005-08-05 12:37:02 +02:00
|
|
|
if [ -f "$LOCAL_FILE" ]
|
|
|
|
then . "$LOCAL_FILE" $1
|
|
|
|
fi
|
|
|
|
|
2005-08-04 18:45:29 +02:00
|
|
|
disabled()
|
|
|
|
{
|
|
|
|
ifs="$IFS"; IFS=,
|
2005-08-04 19:00:18 +02:00
|
|
|
for skip in `sysenv disable`
|
2005-08-04 18:45:29 +02:00
|
|
|
do
|
2005-08-04 19:00:18 +02:00
|
|
|
if [ "$skip" = "$1" ]
|
2005-08-04 18:45:29 +02:00
|
|
|
then
|
|
|
|
IFS="$ifs"; unset ifs
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
IFS="$ifs"; unset ifs
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2005-04-25 15:50:26 +02:00
|
|
|
daemonize()
|
|
|
|
{
|
|
|
|
# Function to start a daemon, if it exists.
|
|
|
|
local IFS=':'
|
|
|
|
local name="$1"
|
|
|
|
test "$1" = tcpd && name="$2"
|
|
|
|
|
|
|
|
for dir in $PATH
|
|
|
|
do
|
|
|
|
if [ -f "$dir/$1" ]
|
|
|
|
then
|
2005-08-04 18:45:29 +02:00
|
|
|
|
|
|
|
# check if this service is disabled at the boot monitor.
|
|
|
|
if disabled $name; then return; fi
|
|
|
|
|
2005-04-25 15:50:26 +02:00
|
|
|
echo -n " $name"
|
|
|
|
"$@" &
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2005-08-02 17:46:24 +02:00
|
|
|
up()
|
|
|
|
{
|
2010-07-05 21:37:08 +02:00
|
|
|
# Function to dynamically start a system service
|
|
|
|
opt=""
|
|
|
|
prefix=$(expr "$1 " : '\(-\)')
|
|
|
|
if [ "$prefix" = "-" ];
|
|
|
|
then
|
|
|
|
opt=$1
|
|
|
|
shift
|
|
|
|
fi
|
2005-08-02 17:46:24 +02:00
|
|
|
service=$1
|
2005-11-28 16:39:01 +01:00
|
|
|
shift
|
2005-08-02 17:46:24 +02:00
|
|
|
|
|
|
|
# First check if this service is disabled at the boot monitor.
|
2005-08-04 18:45:29 +02:00
|
|
|
if disabled $service; then return; fi
|
2005-08-02 17:46:24 +02:00
|
|
|
|
|
|
|
# Service is not disabled. Try to bring it up.
|
|
|
|
echo -n " $service"
|
2010-04-09 23:56:44 +02:00
|
|
|
service $opt up /usr/sbin/$service "$@"
|
2005-08-02 17:46:24 +02:00
|
|
|
}
|
2005-07-19 14:16:55 +02:00
|
|
|
|
2010-05-18 00:22:53 +02:00
|
|
|
get_eth_labels() {
|
|
|
|
# Filter out the non-vlan ethernet entries from inet.conf.
|
|
|
|
# Produce as output a list of "drivername_instancenr"-formatted labels.
|
|
|
|
# The first sed is taken from /bin as older GNU sed versions don't know '\t'.
|
|
|
|
/bin/sed 's/\t/ /g' /etc/inet.conf | \
|
|
|
|
sed -n 's/^ *eth[0-9][0-9]* *\([^ ][^ ]*\) *\([0-9][0-9]*\).*$/\1_\2/p' | \
|
|
|
|
grep -v '^vlan_'
|
|
|
|
}
|
2006-04-11 13:55:45 +02:00
|
|
|
|
|
|
|
DAEMONS=/etc/rc.daemons
|
|
|
|
|
2005-04-25 15:50:26 +02:00
|
|
|
case $action in
|
|
|
|
start)
|
|
|
|
# Select console font.
|
|
|
|
test -f /etc/font && loadfont /etc/font </dev/console
|
|
|
|
|
|
|
|
# Cleanup.
|
|
|
|
rm -rf /tmp/. /usr/run/. /usr/spool/lpd/. /usr/spool/locks/.
|
|
|
|
|
2005-08-04 11:26:36 +02:00
|
|
|
# Start servers and drivers set at the boot monitor.
|
2005-08-11 15:22:31 +02:00
|
|
|
echo -n "Starting services:"
|
2010-07-05 21:37:08 +02:00
|
|
|
up -n random -dev /dev/random -devstyle STYLE_DEVA -period 3HZ
|
2005-08-03 17:22:41 +02:00
|
|
|
|
2005-07-19 14:16:55 +02:00
|
|
|
# load random number generator
|
|
|
|
if [ -f $RANDOM_FILE ]
|
|
|
|
then
|
|
|
|
cat < $RANDOM_FILE >/dev/random
|
|
|
|
# overwrite $RANDOM_FILE. We don't want to use this data again
|
2005-08-02 17:56:24 +02:00
|
|
|
dd if=/dev/random of=$RANDOM_FILE bs=1024 count=1 2> /dev/null
|
2005-07-19 14:16:55 +02:00
|
|
|
fi
|
|
|
|
|
2010-05-18 00:22:53 +02:00
|
|
|
# start network driver instances for all configured ethernet devices
|
|
|
|
for label in $(get_eth_labels); do
|
|
|
|
driver=$(echo $label | sed 's/\(.*\)_.*/\1/')
|
|
|
|
instance=$(echo $label | sed 's/.*_//')
|
|
|
|
eval arg=\$${label}_arg
|
|
|
|
if [ ! -z "$arg" ]; then arg=" $arg"; fi
|
|
|
|
arg="-args \"instance=$instance$arg\""
|
|
|
|
eval up $driver -label $label $arg -period 5HZ
|
2005-08-04 11:26:36 +02:00
|
|
|
done
|
2011-04-07 09:44:23 +02:00
|
|
|
if [ X`/bin/sysenv lwip` = Xyes ]
|
|
|
|
then
|
|
|
|
up lwip -script /etc/rs.inet -dev /dev/ip -devstyle STYLE_CLONE
|
|
|
|
else
|
|
|
|
up inet -script /etc/rs.inet -dev /dev/ip -devstyle STYLE_CLONE
|
|
|
|
fi
|
2010-07-05 21:37:08 +02:00
|
|
|
up -n printer -dev /dev/lp -period 10HZ
|
|
|
|
up -n ipc
|
2005-08-02 17:46:24 +02:00
|
|
|
echo .
|
2005-04-25 15:50:26 +02:00
|
|
|
|
|
|
|
# Network initialization.
|
|
|
|
(: </dev/tcp) 2>/dev/null && net=t # Is there a TCP/IP server?
|
|
|
|
|
|
|
|
echo -n "Starting daemons:"
|
|
|
|
daemonize update
|
2005-05-03 17:41:02 +02:00
|
|
|
|
|
|
|
# Ugly error message when starting cron from CD.
|
|
|
|
# (and cron unnecessary then so..)
|
|
|
|
if [ ! -f /CD ]
|
2006-04-04 15:44:23 +02:00
|
|
|
then daemonize cron
|
2006-04-04 15:31:56 +02:00
|
|
|
else mkdir /tmp/log
|
2006-04-04 15:44:23 +02:00
|
|
|
rm -f /var/log || true
|
2006-04-04 15:31:56 +02:00
|
|
|
ln -s /tmp/log /var/log || true
|
|
|
|
. /etc/rc.cd
|
2005-05-03 17:41:02 +02:00
|
|
|
fi
|
2006-04-04 18:12:08 +02:00
|
|
|
# syslogd has not been started yet
|
2006-04-05 11:29:18 +02:00
|
|
|
rm -f /var/run/syslogd.pid
|
2006-04-04 13:52:57 +02:00
|
|
|
daemonize syslogd
|
2005-08-02 17:56:24 +02:00
|
|
|
echo .
|
2005-04-25 15:50:26 +02:00
|
|
|
|
|
|
|
if [ "$net" ]
|
|
|
|
then
|
|
|
|
if [ -f /etc/rc.net ]
|
|
|
|
then
|
|
|
|
# Let a customized TCP/IP initialization script figure it out.
|
|
|
|
. /etc/rc.net
|
|
|
|
else
|
|
|
|
# Standard network daemons.
|
2005-08-02 17:56:24 +02:00
|
|
|
echo -n "Starting networking:"
|
2010-07-02 13:22:42 +02:00
|
|
|
if grep -s 'psip0.*default' /etc/inet.conf >/dev/null
|
2006-03-28 14:35:33 +02:00
|
|
|
then ifconfig -h 10.0.0.1
|
2010-04-08 15:41:35 +02:00
|
|
|
else
|
2011-04-07 09:44:23 +02:00
|
|
|
if [ X`/bin/sysenv lwip` = Xyes ]
|
|
|
|
then
|
|
|
|
dhcpd --lwip &
|
|
|
|
echo -n " dhcpd"
|
|
|
|
else
|
|
|
|
daemonize dhcpd
|
|
|
|
fi
|
2006-03-28 14:35:33 +02:00
|
|
|
fi
|
2006-04-11 15:42:58 +02:00
|
|
|
daemonize nonamed -L
|
2006-04-11 13:55:45 +02:00
|
|
|
if [ -f "$DAEMONS" ]
|
|
|
|
then . "$DAEMONS"
|
|
|
|
fi
|
2005-08-10 17:19:50 +02:00
|
|
|
# The last daemon has been started, so close the list:
|
|
|
|
echo .
|
2005-04-25 15:50:26 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$net" ]
|
|
|
|
then
|
|
|
|
# Get the nodename from the DNS and set it.
|
|
|
|
trap '' 2
|
2007-02-09 17:28:34 +01:00
|
|
|
intr -t 20 hostaddr -h
|
2005-04-25 15:50:26 +02:00
|
|
|
trap 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Recover files being edited when the system crashed.
|
|
|
|
test -f /usr/bin/elvprsv && elvprsv /usr/tmp/elv*
|
|
|
|
|
|
|
|
# Run the daily cleanup on systems that are not on at night.
|
|
|
|
test -f /usr/etc/daily && sh /usr/etc/daily boot &
|
2005-07-19 14:16:55 +02:00
|
|
|
|
|
|
|
;;
|
|
|
|
stop|down)
|
2006-01-18 10:33:09 +01:00
|
|
|
# Save random data, if /usr is mounted rw.
|
|
|
|
if grep ' \/usr .*rw' /etc/mtab >/dev/null
|
|
|
|
then
|
|
|
|
if dd if=/dev/random of=$RANDOM_FILE.new bs=1024 count=1 2>/dev/null
|
|
|
|
then
|
2005-07-19 14:16:55 +02:00
|
|
|
mv $RANDOM_FILE.new $RANDOM_FILE
|
2006-01-18 10:33:09 +01:00
|
|
|
else
|
|
|
|
echo 'Failed to save random data.'
|
|
|
|
fi
|
2005-07-19 14:16:55 +02:00
|
|
|
fi
|
2005-04-25 15:50:26 +02:00
|
|
|
esac
|
2006-02-17 17:46:08 +01:00
|
|
|
|
2010-08-03 13:18:18 +02:00
|
|
|
d=
|
2006-02-17 17:46:08 +01:00
|
|
|
# Let packages run their own scripts
|
2010-08-03 13:18:18 +02:00
|
|
|
for d in /usr/local/etc/rc.d /usr/pkg/etc/rc.d
|
|
|
|
do
|
2006-02-17 17:46:08 +01:00
|
|
|
if [ -d "$d" ]
|
2010-08-03 13:18:18 +02:00
|
|
|
then ( if cd $d
|
2006-02-17 17:46:08 +01:00
|
|
|
then
|
2006-02-20 16:11:41 +01:00
|
|
|
echo -n "Local packages ($action): "
|
2006-02-17 17:46:08 +01:00
|
|
|
for f in *
|
|
|
|
do
|
|
|
|
if [ -x "$f" ]
|
|
|
|
then echo -n "$f "
|
|
|
|
sh "$f" "$action"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo " done."
|
|
|
|
fi
|
2010-08-03 13:18:18 +02:00
|
|
|
)
|
2006-02-17 17:46:08 +01:00
|
|
|
fi
|
2010-08-03 13:18:18 +02:00
|
|
|
done
|