X-Git-Url: http://git.pippins.net/embedvideo/.git/static/git-logo.png?a=blobdiff_plain;f=zfs-replicate-all;h=456e835ebe4072f44c1df740523bc8165cee1a1f;hb=17efdff10293f272ca326b4997f8352816872d53;hp=c47b86f952930538361b488808ddf245e3fa46bf;hpb=cc81a4f1a8387e6991eb447383cae05220a65d15;p=zfs-ubuntu%2F.git diff --git a/zfs-replicate-all b/zfs-replicate-all index c47b86f..456e835 100755 --- a/zfs-replicate-all +++ b/zfs-replicate-all @@ -50,6 +50,18 @@ cleanup_and_exit() { } trap cleanup_and_exit INT +fatal() { + # echo message to terminal + echo -e 2>&1 "$1" + # send email notification + echo -e "$1" | $mailx -s "zfs-replicate-all on $hostname failed" "$mailto" +} + +fatal_and_exit() { + fatal $* + exit 1 +} + # This function executes the replicate command and checks the stoptime replicate() { zfs-replicate $* >> $logfile 2>&1 @@ -77,18 +89,16 @@ snapshot_age() { fi } -# Mount the local backup pool if needed and the option is given to do so, else error out +# Import the local backup pool if needed and the option is given to do so, else error out zpool list -H "$backup_pool" >/dev/null 2>&1 if [ $? != 0 ]; then if [[ $import_export_backup_pool == 1 ]]; then zpool import $backup_pool if [ $? != 0 ]; then - echo "-E- unable to import the backup pool $backup_pool" - exit 1 + fatal_and_exit "-E- unable to import the backup pool $backup_pool on $hostname" "$mailto" fi else - echo "-E- The local backup pool, '$backup_pool' doesn't seem to exist." $mailto - exit 1 + fatal_and_exit "-E- The local backup pool on $hostname, '$backup_pool' doesn't seem to exist." "$mailto" fi fi @@ -96,8 +106,7 @@ fi backup_pool_guid=`zpool get guid $backup_pool 2>&1 | grep $backup_pool | awk '{ print $3 }'` zpool get guid $backup_pool > /dev/null 2>&1 if [ $? != 0 ]; then - echo >&2 "-E- Unable to extract the guid for the local backup pool: $backup_pool" - exit 1 + fatal_and_exit "-E- Unable to extract the guid for the local backup pool on $hostname: $backup_pool" "$mailto" fi # Setup our backup marker names @@ -125,9 +134,14 @@ 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 "zfs-scrub" | grep -q "${backup_pool}" | grep -v grep if [ $? != 0 ]; then - fatal_and_exit "-E- unable to export the local backup pool $backup_pool" + zpool export $backup_pool + if [ $? != 0 ]; then + lsof /$backup_pool/* + fatal "-E- unable to export the local backup pool $backup_pool on $hostname" "$mailto" + fi fi fi