summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/motd
blob: 69ed49e27c8d95d9c9b847a6d9af0c3e51379548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/sh
#
# $NetBSD: motd,v 1.5 2000/09/19 13:04:38 lukem Exp $
# $FreeBSD$
#

# PROVIDE: motd
# REQUIRE: mountcritremote
# BEFORE:  LOGIN
# KEYWORD: FreeBSD NetBSD

. /etc/rc.subr

name="motd"
rcvar="update_motd"
start_cmd="motd_start"
stop_cmd=":"

case ${OSTYPE} in
FreeBSD)
	PERMS="644"
	;;
NetBSD)
	PERMS="664"
	;;
esac

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 ${PERMS} /dev/null /etc/motd
	fi

	case ${OSTYPE} in
	FreeBSD)
		T=`mktemp /tmp/_motd.XXXXXX`
		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}
		;;
	NetBSD)
		T='/etc/_motd'
		sysctl -n kern.version | while read i; do echo $i; break; done > $T
		sed '1{/^NetBSD.*/{d;};};' < /etc/motd >> $T
		;;
	esac
	cmp -s $T /etc/motd || {
		cp $T /etc/motd
		chmod ${PERMS} /etc/motd
	}
	rm -f $T
}

load_rc_config $name
run_rc_command "$1"
OpenPOWER on IntegriCloud