mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 07:14:26 +01:00
14 lines
229 B
Bash
Executable File
14 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
|