9ed55d1192
All periodic sub-scripts <larf> now have their return codes interpreted by periodic(8). Output may be masked based on variable values in periodic.conf. It's also now possible to email periodic output to arbitrary addresses, or to send it to a log file, examples of which can be found in newsyslog.conf. The upshot of it all should be no discernable changes to the default behaviour of periodic(8). PR: 21250
50 lines
995 B
Bash
Executable File
50 lines
995 B
Bash
Executable File
#!/bin/sh -
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# 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 "$weekly_clean_kvmdb_enable" in
|
|
[Yy][Ee][Ss])
|
|
if [ ! -d /var/db ]
|
|
then
|
|
echo '$weekly_clean_kvmdb_enable is set but /var/db' \
|
|
"doesn't exist"
|
|
rc=2
|
|
elif [ -z "$weekly_clean_kvmdb_days" ]
|
|
then
|
|
echo '$weekly_clean_kvmdb_enable is set but' \
|
|
'$weekly_clean_kvmdb_days is not'
|
|
rc=2
|
|
else
|
|
echo ""
|
|
echo "Cleaning up kernel database files:"
|
|
|
|
kernel=`sysctl -n kern.bootfile`
|
|
kernel=kvm_${kernel##*/}.db
|
|
|
|
case "$weekly_clean_kvmdb_verbose" in
|
|
[Yy][Ee][Ss])
|
|
print=-print;;
|
|
*)
|
|
print=;;
|
|
esac
|
|
|
|
rc=$(find /var/db -name "kvm_*.db" ! -name $kernel \
|
|
-atime +$weekly_clean_kvmdb_days -delete $print |
|
|
tee /dev/stderr | wc -l)
|
|
[ -z "$print" ] && rc=0
|
|
[ $rc -gt 1 ] && rc=1
|
|
fi;;
|
|
|
|
*) rc=0;;
|
|
esac
|
|
|
|
exit $rc
|