mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 17:05:14 -04:00
15 lines
248 B
Text
15 lines
248 B
Text
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
# $FreeBSD$
|
||
|
|
#
|
||
|
|
|
||
|
|
# PROVIDE: msgs
|
||
|
|
# REQUIRE: LOGIN
|
||
|
|
# KEYWORD: FreeBSD
|
||
|
|
|
||
|
|
# 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
|