diff options
author | Holger Levsen <holger@layer-acht.org> | 2012-12-01 16:02:55 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2012-12-01 16:02:55 +0100 |
commit | a085f800dfa6272f23e10663ea26064822f449d0 (patch) | |
tree | 0d51d45539d71c3981ee73a9eabdc9af072cb429 /etc/munin/plugins/jenkins_builds | |
parent | f95a0ca45e12303fda54686fd77badfc4e2d0bd7 (diff) | |
download | jenkins.debian.net-a085f800dfa6272f23e10663ea26064822f449d0.tar.xz |
fixup: save state in statefiles and update them every 30min
Diffstat (limited to 'etc/munin/plugins/jenkins_builds')
-rwxr-xr-x | etc/munin/plugins/jenkins_builds | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/munin/plugins/jenkins_builds b/etc/munin/plugins/jenkins_builds index 00d1342b..24480de2 100755 --- a/etc/munin/plugins/jenkins_builds +++ b/etc/munin/plugins/jenkins_builds @@ -35,7 +35,8 @@ if [ -f $STATEFILE ] && [ "$1" = "" ] ; then exit 0 fi -if [ "$1" = "update" ] ; then +# delete statefile if it's older than 30min +if test `find $STATEFILE -mmin +30` rm -f $STATEFILE fi |