]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/munin/templates/default/backup.cron.erb
Revert "Disable OAuth 1.0a and basic authentication"
[chef.git] / cookbooks / munin / templates / default / backup.cron.erb
diff --git a/cookbooks/munin/templates/default/backup.cron.erb b/cookbooks/munin/templates/default/backup.cron.erb
deleted file mode 100644 (file)
index 80e78c4..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# DO NOT EDIT - This file is being maintained by Chef
-
-T=$(mktemp -d -t -p /var/tmp munin.XXXXXXXXXX)
-D=$(date +%Y-%m-%d)
-B=munin-$D.tar.gz
-
-export GZIP="--rsyncable -9"
-export RSYNC_RSH="ssh -ax -c arcfour"
-
-nice tar --create --gzip --dereference --directory=/var/lib/munin --file=$T/$B openstreetmap *.storable
-nice rsync $T/$B backup::backup
-
-rm -rf $T