summaryrefslogtreecommitdiffstats
path: root/etc/munin/plugins/jenkins_jobs
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2012-12-01 16:15:46 +0100
committerHolger Levsen <holger@layer-acht.org>2012-12-01 16:15:46 +0100
commitddf0bab5001228b57067d12a624c357bdb59a6cf (patch)
treec219d6dc66defd1b55853c7924c476344380a1c7 /etc/munin/plugins/jenkins_jobs
parenta085f800dfa6272f23e10663ea26064822f449d0 (diff)
downloadjenkins.debian.net-ddf0bab5001228b57067d12a624c357bdb59a6cf.tar.xz
fixup: save state in statefiles and update them every 30min
Diffstat (limited to 'etc/munin/plugins/jenkins_jobs')
-rwxr-xr-xetc/munin/plugins/jenkins_jobs4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/munin/plugins/jenkins_jobs b/etc/munin/plugins/jenkins_jobs
index 29898b1f..a755c3e9 100755
--- a/etc/munin/plugins/jenkins_jobs
+++ b/etc/munin/plugins/jenkins_jobs
@@ -35,8 +35,8 @@ if [ -f $STATEFILE ] && [ "$1" = "" ] ; then
exit 0
fi
-# delete statefile if it's older than 30min
-if test `find $STATEFILE -mmin +30`
+# delete statefile if it's older than $update_interval set in /etc/munin/plugin-conf.d/jenkins
+if test $(find $STATEFILE -mmin +$update_interval) ; then
rm -f $STATEFILE
fi