diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2010-01-26 08:17:27 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2010-01-26 08:17:27 +0000 |
commit | c83aca7e7b7fd38e45b2a2738fa156df76f8e507 (patch) | |
tree | 852412debbabf689b4c4861e20331cb3c905d19c /debian/sitesummary.cron.daily | |
parent | ecd7d82d31d5d25217296f7fdb5827cc2e2e4b65 (diff) | |
download | sitesummary-c83aca7e7b7fd38e45b2a2738fa156df76f8e507.tar.gz sitesummary-c83aca7e7b7fd38e45b2a2738fa156df76f8e507.tar.bz2 sitesummary-c83aca7e7b7fd38e45b2a2738fa156df76f8e507.tar.xz |
Remove entries in the cron job before munin and nagios
configuration is updated, to not monitor removed hosts another
day.
Diffstat (limited to 'debian/sitesummary.cron.daily')
-rwxr-xr-x | debian/sitesummary.cron.daily | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/sitesummary.cron.daily b/debian/sitesummary.cron.daily index bc7022d..ee63ac9 100755 --- a/debian/sitesummary.cron.daily +++ b/debian/sitesummary.cron.daily @@ -25,6 +25,8 @@ remove_old_entries() { -exec /usr/lib/sitesummary/expire-entry '{}' \; } +[ -d $entriesdir ] && remove_old_entries + if [ -x /usr/sbin/sitesummary-update-nagios ] ; then /usr/sbin/sitesummary-update-nagios fi @@ -33,7 +35,5 @@ if [ -x /usr/sbin/sitesummary-update-munin ] ; then /usr/sbin/sitesummary-update-munin fi -[ -d $entriesdir ] && remove_old_entries - # Update the web report once a day [ -x $makewebreport ] && nice $makewebreport |