NetBSD/etc/rc.d/motd
thorpej 96776149fc Correct the "direction" of the barrier dependencies (DAEMON, LOGIN,
NETWORKING, and SERVERS) by specifying that certain things should
come BEFORE a given barrier, rather than having the barrier REQUIRE
a service.  This allows scripts to be removed without having to
edit the barrier dependencies.

As discussed on tech-userlevel, and approved by Luke.
2002-03-22 04:33:57 +00:00

38 lines
719 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: motd,v 1.8 2002/03/22 04:33:59 thorpej Exp $
#
# PROVIDE: motd
# REQUIRE: mountcritremote
# BEFORE: LOGIN
. /etc/rc.subr
name="motd"
rcvar="update_motd"
start_cmd="motd_start"
stop_cmd=":"
motd_start()
{
# Update kernel info in /etc/motd
# Must be done *before* interactive logins are possible
# to prevent possible race conditions.
#
echo "Updating motd."
if [ ! -f /etc/motd ]; then
install -c -o root -g wheel -m 664 /dev/null /etc/motd
fi
( umask 022
T=/etc/_motd
sysctl -n kern.version | while read i; do echo $i; break; done > $T
sed '1{/^NetBSD.*/{d;};};' < /etc/motd >> $T
cmp -s $T /etc/motd || cp $T /etc/motd
rm -f $T
)
}
load_rc_config $name
run_rc_command "$1"