]> git.openstreetmap.org Git - chef.git/commitdiff
Allow the path to the tile replication state to be set
authorTom Hughes <tom@compton.nu>
Wed, 5 Jun 2013 20:18:49 +0000 (21:18 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 5 Jun 2013 20:18:49 +0000 (21:18 +0100)
cookbooks/munin/files/default/plugins/replication_delay

index e88ae97a1358e84cefc8a91ad082712e7a76f34f..2a787d1b9c4ea6e2628135f24baa58a0b4e52b3a 100755 (executable)
@@ -19,10 +19,11 @@ if [ "$1" = "config" ]; then
        echo 'age.cdef age,60,/'
         exit 0 
 fi 
-tstamp=`sed -e '/^timestamp=/!d' -e 's/.*=//' -e 's/Z//' -e 's/T/Z/' -e 's/\\\\//' -e 's/\\\\//' -e q /home/jburgess/replicate/state.txt` 
+
+state=${state:-/home/jburgess/replicate/state.txt}
+tstamp=`sed -e '/^timestamp=/!d' -e 's/.*=//' -e 's/Z//' -e 's/T/Z/' -e 's/\\\\//' -e 's/\\\\//' -e q ${state}` 
 tstampsec=`date --date=$tstamp +%s` 
 nowsec=`date +%s` 
  
  
-echo "age.value " `expr $nowsec - $tstampsec`
\ No newline at end of file
+echo "age.value " `expr $nowsec - $tstampsec`