Browse Source

Merge pull request #68 from bcachet/feature/tarsnap

fix(tarsnap): rotate script fails on error
Alex Payne 11 years ago
parent
commit
6eb961b559
1 changed files with 2 additions and 7 deletions
  1. 2
    7
      roles/tarsnap/files/tarsnap.sh

+ 2
- 7
roles/tarsnap/files/tarsnap.sh View File

@@ -22,11 +22,12 @@ MONTHLY=1
22 22
 MONTHLY_DAY=01
23 23
 
24 24
 # Path to tarsnap
25
-#TARSNAP="/home/tdb/tarsnap/tarsnap.pl"
26 25
 TARSNAP="/usr/local/bin/tarsnap"
27 26
 
28 27
 # end of config
29 28
 
29
+set -e
30
+
30 31
 # day of week: 1-7, monday = 1
31 32
 DOW=`date +%u`
32 33
 # day of month: 01-31
@@ -52,12 +53,6 @@ fi
52 53
 
53 54
 # Do backups
54 55
 for dir in $DIRS; do
55
-	# nasty bodge for my large /home :-)
56
-	EXTRA_FLAGS=
57
-	if [ X"$dir" = X"/home" ]; then
58
-		EXTRA_FLAGS="--lowmem"
59
-	fi
60
-
61 56
 	echo "==> create $BACKUP-$dir"
62 57
 	$TARSNAP $EXTRA_FLAGS -c -f $BACKUP-$dir $dir
63 58
 done

Loading…
Cancel
Save