X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;f=zfs-replicate-all;h=62a0ce4d10f60a78cde674427c974341596c413a;hb=117f1e7cd08226590ffdc40c40464a2a8304ee7c;hp=8d43bd92430e3c1f5c0a124a50c08185c9803fa5;hpb=0b4e25e42e934ccd5258a5659ed15c394b7f0a62;p=zfs-ubuntu%2F.git diff --git a/zfs-replicate-all b/zfs-replicate-all index 8d43bd9..62a0ce4 100755 --- a/zfs-replicate-all +++ b/zfs-replicate-all @@ -54,7 +54,7 @@ fatal_and_exit() { # echo message to terminal echo -e 2>&1 "$1" # send email notification - echo -e "$1" | $mailx -s "zfs scrub on $hostname failed" "$mailto" + echo -e "$1" | $mailx -s "zfs-replicate-all on $hostname failed" "$mailto" exit 1 } @@ -130,9 +130,13 @@ done # Export the local pool if told to do so if [[ $import_export_backup_pool == 1 ]]; then - zpool export $backup_pool + # Don't export the pool if there is a currently running zfs-scrub operation + ps -ef | grep -q "zfs-scrub ${backup_pool}" | grep -v grep if [ $? != 0 ]; then - fatal_and_exit "-E- unable to export the local backup pool $backup_pool on $hostname" "$mailto" + zpool export $backup_pool + if [ $? != 0 ]; then + fatal_and_exit "-E- unable to export the local backup pool $backup_pool on $hostname" "$mailto" + fi fi fi