freebsd-dev/etc/periodic/daily/130.clean-msgs

28 lines
483 B
Plaintext
Raw Normal View History

#!/bin/sh
#
1999-08-27 23:37:10 +00:00
# $FreeBSD$
#
# Remove system messages
#
# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/periodic.conf ]
then
. /etc/defaults/periodic.conf
source_periodic_confs
fi
case "$daily_clean_preserve_enable" in
[Yy][Ee][Ss])
if [ -d /var/msgs ]
then
echo ""
echo "Cleaning out old system announcements:"
[ -n "$daily_clean_msg_days" ] &&
arg=-${daily_clean_msg_days#-} || arg=
msgs -c $arg
fi;;
esac