diff options
author | Brian Somers <brian@FreeBSD.org> | 2000-09-14 17:19:15 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 2000-09-14 17:19:15 +0000 |
commit | 9ed55d11927f19588b8aef6f62573088ef326533 (patch) | |
tree | c31f792ea5c6e9dc64b4548ce1eac04f000541b2 /etc/periodic/weekly/120.clean-kvmdb | |
parent | cb144e905c51d496dc25e6c2e9c99ba603d00a02 (diff) | |
download | src-9ed55d11927f19588b8aef6f62573088ef326533.tar.gz src-9ed55d11927f19588b8aef6f62573088ef326533.zip |
Another overhaul of the periodic stuff.
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
Notes
Notes:
svn path=/head/; revision=65843
Diffstat (limited to 'etc/periodic/weekly/120.clean-kvmdb')
-rwxr-xr-x | etc/periodic/weekly/120.clean-kvmdb | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/etc/periodic/weekly/120.clean-kvmdb b/etc/periodic/weekly/120.clean-kvmdb index dbc8f4e444bb..603e70b0d017 100755 --- a/etc/periodic/weekly/120.clean-kvmdb +++ b/etc/periodic/weekly/120.clean-kvmdb @@ -12,8 +12,17 @@ fi case "$weekly_clean_kvmdb_enable" in [Yy][Ee][Ss]) - if [ -d /var/db -a -n "$weekly_clean_kvmdb_days" ] + 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:" @@ -27,7 +36,14 @@ case "$weekly_clean_kvmdb_enable" in print=;; esac - find /var/db -name "kvm_*.db" ! -name $kernel \ - -atime +$weekly_clean_kvmdb_days -delete $print + 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 |