2001-06-16 07:16:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-06-13 22:14:37 +00:00
|
|
|
# $FreeBSD$
|
2001-06-16 07:16:14 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: motd
|
|
|
|
# REQUIRE: mountcritremote
|
2002-06-13 22:14:37 +00:00
|
|
|
# BEFORE: LOGIN
|
2001-06-16 07:16:14 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="motd"
|
2016-04-23 16:10:54 +00:00
|
|
|
desc="Update /etc/motd"
|
2001-06-16 07:16:14 +00:00
|
|
|
rcvar="update_motd"
|
|
|
|
start_cmd="motd_start"
|
|
|
|
stop_cmd=":"
|
|
|
|
|
2003-10-13 08:44:07 +00:00
|
|
|
PERMS="644"
|
2002-06-13 22:14:37 +00:00
|
|
|
|
2001-06-16 07:16:14 +00:00
|
|
|
motd_start()
|
|
|
|
{
|
|
|
|
# Update kernel info in /etc/motd
|
|
|
|
# Must be done *before* interactive logins are possible
|
|
|
|
# to prevent possible race conditions.
|
|
|
|
#
|
2009-10-10 22:17:03 +00:00
|
|
|
check_startmsgs && echo -n 'Updating motd:'
|
2001-06-16 07:16:14 +00:00
|
|
|
if [ ! -f /etc/motd ]; then
|
2002-06-13 22:14:37 +00:00
|
|
|
install -c -o root -g wheel -m ${PERMS} /dev/null /etc/motd
|
2001-06-16 07:16:14 +00:00
|
|
|
fi
|
2002-06-13 22:14:37 +00:00
|
|
|
|
2003-10-13 08:44:07 +00:00
|
|
|
if [ ! -w /etc/motd ]; then
|
2008-06-23 04:46:54 +00:00
|
|
|
echo ' /etc/motd is not writable, update failed.'
|
2003-10-13 08:44:07 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
T=`mktemp -t motd`
|
|
|
|
uname -v | sed -e 's,^\([^#]*\) #\(.* [1-2][0-9][0-9][0-9]\).*/\([^\]*\) $,\1 (\3) #\2,' > ${T}
|
|
|
|
awk '{if (NR == 1) {if ($1 == "FreeBSD") {next} else {print "\n"$0}} else {print}}' < /etc/motd >> ${T}
|
|
|
|
|
2002-06-13 22:14:37 +00:00
|
|
|
cmp -s $T /etc/motd || {
|
|
|
|
cp $T /etc/motd
|
|
|
|
chmod ${PERMS} /etc/motd
|
|
|
|
}
|
2001-06-16 07:16:14 +00:00
|
|
|
rm -f $T
|
2003-10-13 08:44:07 +00:00
|
|
|
|
2009-10-10 22:17:03 +00:00
|
|
|
check_startmsgs && echo '.'
|
2001-06-16 07:16:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|