diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/rdiff-check.sh.erb | 2 | ||||
| -rw-r--r-- | templates/rsync-check.sh.erb | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/templates/rdiff-check.sh.erb b/templates/rdiff-check.sh.erb index a2052ff..947370c 100644 --- a/templates/rdiff-check.sh.erb +++ b/templates/rdiff-check.sh.erb @@ -17,7 +17,7 @@ if [ -e "$BACKUP_FOLDER" ]; then      rdiff-backup --list-increment-sizes $set; -    if [ -d "$set/<%= backupdir %>/duplicity" ]; then +    if [ -d "$set/<%= backupdir %>/duplicity" ] && [ "$1" != "--short" ]; then        echo " "        echo "Checking duplicity backup found at $set/<%= backupdir %>/duplicity..."        echo "======================================================" diff --git a/templates/rsync-check.sh.erb b/templates/rsync-check.sh.erb index 07eb42d..a33606d 100644 --- a/templates/rsync-check.sh.erb +++ b/templates/rsync-check.sh.erb @@ -38,7 +38,7 @@ if [ -e "$BACKUP_FOLDER" ]; then      fi      # Check duplicity metadata -    if [ -d "$set/<%= backupdir %>/duplicity" ]; then +    if [ -d "$set/<%= backupdir %>/duplicity" ] && [ "$1" != "--short" ]; then        for duplicity in `ls -1 $set/<%= backupdir %>/duplicity | grep -v metadata | xargs`; do          echo " "          echo "Checking duplicity backup found at $set/<%= backupdir %>/duplicity/$duplicity..." | 
