Only export the pool after scrubbing it if it is still imported
[zfs-ubuntu/.git] / zfs-scrub
index 495adf4f9b7ab4c795727c7e3e810dcbe092e4be..169579660eeb5e78e643b8f7f33252c4cee1448c 100755 (executable)
--- a/zfs-scrub
+++ b/zfs-scrub
@@ -90,10 +90,18 @@ do
 
   # Export the local pool if told to do so
   if [[ $import_export_backup_pool == 1 ]] && [[ "$i" =~ "$backup_pool" ]]; then
-    zpool export $i
+    # Don't export the pool if there is a currently running zfs-replicate operation
+    ps -ef | grep -q "zfs-replicate" | grep -v grep
     if [ $? != 0 ]; then
-      echo "-E- unable to export the local pool $i"
-      zpool status $i | $mailx -s "zpool scrub on $hostname unable to export the local pool $i" "$mailto"
+      # Only export the pool if it is still imported
+      zpool list -H "$i" >/dev/null 2>&1
+      if [ $? == 0 ]; then
+        zpool export $i
+        if [ $? != 0 ]; then
+          echo "-E- unable to export the local pool $i"
+          zpool status $i | $mailx -s "zpool scrub on $hostname unable to export the local pool $i" "$mailto"
+        fi
+      fi
     fi
   fi