aboutsummaryrefslogtreecommitdiff
path: root/sbin/init/rc.d/msgs
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/init/rc.d/msgs')
-rwxr-xr-xsbin/init/rc.d/msgs26
1 files changed, 26 insertions, 0 deletions
diff --git a/sbin/init/rc.d/msgs b/sbin/init/rc.d/msgs
new file mode 100755
index 000000000000..d328c334976e
--- /dev/null
+++ b/sbin/init/rc.d/msgs
@@ -0,0 +1,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"