NetBSD/etc/rc.d/motd

35 lines
687 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: motd,v 1.6 2000/10/09 06:01:18 nisimura Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: motd
# REQUIRE: mountcritremote
2000-03-10 14:53:23 +03:00
. /etc/rc.subr
name="motd"
rcvar="update_motd"
2000-03-10 14:53:23 +03:00
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
sysctl -n kern.version | while read i; do echo $i; break; done > $T
sed '1{/^NetBSD.*/{d;};};' < /etc/motd >> $T
2000-03-10 14:53:23 +03:00
cmp -s $T /etc/motd || cp $T /etc/motd
rm -f $T
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"