From b8d0e9de8ad99a308f95a617b1303dd93ce863af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Sun, 20 Apr 2014 12:23:41 -0500 Subject: [PATCH] Bug fix --- bash/cronbackup/backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/cronbackup/backup.sh b/bash/cronbackup/backup.sh index ea6bd05..d6b3481 100644 --- a/bash/cronbackup/backup.sh +++ b/bash/cronbackup/backup.sh @@ -4,9 +4,9 @@ source ./config.sh # IO Redirection exec > $LOGFILE - exec 2> $ERRLOG + if [[ -n $BMOUNT ]] && ! grep -qs $BMOUNT /proc/mounts; then echo Mounting $BMOUNT ... mount $BMOUNT @@ -85,6 +85,6 @@ while read line; do # echo --\> $line done < backup_list -if [[ "$MOUNTED" -eq 0 ]]; then +if [[ "$MOUNTED" = 0 ]]; then umount $BMOUNT fi