NetBSD/etc/rc.d/motd
lukem 5c1b0ec207 Use load_rc_config() (from rc.subr) instead of sourcing /etc/rc.conf.
This allows us or a user to change the configuration file method in
one place - rc.subr - without having to edit all of the rc.d/* files.
2000-05-13 08:45:06 +00:00

37 lines
676 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: motd,v 1.2 2000/05/13 08:45:07 lukem Exp $
#
# PROVIDE: motd
# REQUIRE: systemfs
. /etc/rc.subr
name="motd"
start_precmd="checkyesno 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
T=/etc/_motd
rm -f $T
sysctl -n kern.version | sed 1q > $T
echo "" >> $T
sed '1,/^$/d' < /etc/motd >> $T
cmp -s $T /etc/motd || cp $T /etc/motd
rm -f $T
}
load_rc_config $name
run_rc_command "$1"