1997-08-16 17:04:02 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1997-08-16 17:04:02 +00:00
|
|
|
#
|
2000-06-23 01:18:31 +00:00
|
|
|
# Remove system messages
|
1997-08-16 17:04:02 +00:00
|
|
|
#
|
1997-08-17 17:55:45 +00:00
|
|
|
|
2000-06-23 01:18:31 +00:00
|
|
|
# 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
|
1997-08-16 17:04:02 +00:00
|
|
|
fi
|
2000-06-23 01:18:31 +00:00
|
|
|
|
2000-06-30 09:39:51 +00:00
|
|
|
case "$daily_clean_msgs_enable" in
|
2000-06-23 01:18:31 +00:00
|
|
|
[Yy][Ee][Ss])
|
2000-09-14 17:19:15 +00:00
|
|
|
if [ ! -d /var/msgs ]
|
2000-06-23 01:18:31 +00:00
|
|
|
then
|
2000-09-14 17:19:15 +00:00
|
|
|
echo '$daily_clean_msgs_enable is set but /var/msgs' \
|
|
|
|
"doesn't exist"
|
|
|
|
rc=2
|
|
|
|
else
|
2000-06-23 01:18:31 +00:00
|
|
|
echo ""
|
|
|
|
echo "Cleaning out old system announcements:"
|
|
|
|
|
2000-06-30 09:39:51 +00:00
|
|
|
[ -n "$daily_clean_msgs_days" ] &&
|
|
|
|
arg=-${daily_clean_msgs_days#-} || arg=
|
2000-09-14 17:19:15 +00:00
|
|
|
msgs -c $arg && rc=0 || rc=3
|
2000-06-23 01:18:31 +00:00
|
|
|
fi;;
|
2000-09-14 17:19:15 +00:00
|
|
|
|
|
|
|
*) rc=0;;
|
2000-06-23 01:18:31 +00:00
|
|
|
esac
|
2000-09-14 17:19:15 +00:00
|
|
|
|
|
|
|
exit $rc
|