aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.d/msgs
blob: d328c334976e539890345180086a318af448af44 (plain) (blame)
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
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: msgs
# REQUIRE: LOGIN

. /etc/rc.subr

name="msgs"
desc="Make a bounds file for msgs(1)"
start_cmd="msgs_start"
stop_cmd=":"

msgs_start()
{
	# Make a bounds file for msgs(1) if there isn't one already
	#
	if [ -d /var/msgs -a ! -f /var/msgs/bounds -a ! -L /var/msgs/bounds ]; then
		echo 0 > /var/msgs/bounds
	fi
}

load_rc_config $name
run_rc_command "$1"