2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2004-08-13 22:08:03 +04:00
|
|
|
# $NetBSD: motd,v 1.9 2004/08/13 18:08:03 mycroft Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: motd
|
2000-07-26 04:11:48 +04:00
|
|
|
# REQUIRE: mountcritremote
|
2002-03-22 07:33:57 +03:00
|
|
|
# BEFORE: LOGIN
|
2000-03-10 14:53:23 +03:00
|
|
|
|
2004-08-13 22:08:03 +04:00
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
name="motd"
|
2000-09-19 17:04:38 +04:00
|
|
|
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
|
2001-04-26 03:23:37 +04:00
|
|
|
( umask 022
|
2000-03-10 14:53:23 +03:00
|
|
|
T=/etc/_motd
|
2000-10-09 10:01:18 +04:00
|
|
|
sysctl -n kern.version | while read i; do echo $i; break; done > $T
|
2000-07-31 04:17:05 +04:00
|
|
|
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
|
2001-04-26 03:23:37 +04:00
|
|
|
)
|
2000-03-10 14:53:23 +03:00
|
|
|
}
|
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-03-10 14:53:23 +03:00
|
|
|
run_rc_command "$1"
|