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 stale files in /var/preserve
|
|
|
|
#
|
1997-08-16 17:04:02 +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
|
|
|
|
|
|
|
case "$daily_clean_preserve_enable" in
|
|
|
|
[Yy][Ee][Ss])
|
2000-09-14 17:19:15 +00:00
|
|
|
if [ -z "$daily_clean_preserve_days" ]
|
2000-06-23 01:18:31 +00:00
|
|
|
then
|
2000-09-14 17:19:15 +00:00
|
|
|
echo '$daily_clean_preserve_enable is set but' \
|
|
|
|
'$daily_clean_preserve_days is not'
|
|
|
|
rc=2
|
|
|
|
elif [ ! -d /var/preserve ]
|
|
|
|
then
|
|
|
|
echo '$daily_clean_preserve_enable is set but /var/preserve' \
|
|
|
|
"doesn't exist"
|
|
|
|
rc=2
|
|
|
|
else
|
2000-06-23 01:18:31 +00:00
|
|
|
echo ""
|
|
|
|
echo "Removing stale files from /var/preserve:"
|
|
|
|
|
2000-09-14 17:19:15 +00:00
|
|
|
if cd /var/preserve
|
|
|
|
then
|
|
|
|
case "$daily_clean_preserve_verbose" in
|
|
|
|
[Yy][Ee][Ss])
|
|
|
|
print=-print;;
|
|
|
|
*)
|
|
|
|
print=;;
|
|
|
|
esac
|
2000-06-23 01:18:31 +00:00
|
|
|
|
2000-09-14 17:19:15 +00:00
|
|
|
rc=$(find . ! -name . -mtime +$daily_clean_preserve_days \
|
|
|
|
-delete $print | tee /dev/stderr | wc -l)
|
|
|
|
[ -z "$print" ] && rc=0
|
|
|
|
[ $rc -gt 1 ] && rc=1
|
|
|
|
else
|
|
|
|
rc=3
|
|
|
|
fi
|
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
|