mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
13 lines
229 B
Bash
Executable file
13 lines
229 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: msgs
|
|
# REQUIRE: LOGIN
|
|
|
|
# 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
|