Changes to support mounting backup pool under linux zfs
authorAlan J. Pippin <ajp@pippins.net>
Sat, 22 Dec 2012 17:38:04 +0000 (10:38 -0700)
committerAlan J. Pippin <ajp@pippins.net>
Sat, 22 Dec 2012 17:38:04 +0000 (10:38 -0700)
zfs-replicate-all
zfs-rm-all-snaps
zfs-scrub

index c47b86f952930538361b488808ddf245e3fa46bf..0ed35f56a149af0d61f170ea0b0323692b6df8c9 100755 (executable)
@@ -77,7 +77,7 @@ 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
index c65c5ba6e9b7a86d30f2c323ab152347e0e3f97d..73c07465b7ccf4667accb739ee621f06224af7bd 100755 (executable)
@@ -28,7 +28,8 @@ echo -e "\n<Press Enter to execute removal, CTL-C to abort>";
 read
 
 for snap in `zfs list -t snapshot 2>/dev/null | grep "^$zfs_pool" | grep "$snap_pattern" | awk '{print $1}'`; do
+  echo "   destroying snapshot: $snap"
   zfs destroy "$snap" 2>/dev/null
 done
 
-echo "-> Snapshots removed"
\ No newline at end of file
+echo "-> Snapshots removed"
index 462d97924f79f9f14e6d274e6c550841713bbb47..c7d6297c4114989fbc9fef4ddfac7936a2110efb 100755 (executable)
--- a/zfs-scrub
+++ b/zfs-scrub
@@ -23,6 +23,21 @@ fi
 
 for i in $pools
 do
+  # Import the local pool if needed and option was given to do so, else error out
+  zpool list -H "$i" >/dev/null 2>&1
+  if [ $? != 0 ]; then
+    if [[ $import_export_backup_pool == 1 ]]; then
+      zpool import $i
+      if [ $? != 0 ]; then
+        echo "-E- unable to import the pool $i"
+        exit 1
+      fi
+    else
+      echo "-E- The local pool, '$i' doesn't seem to exist."
+      exit 1
+    fi
+  fi
+
   # Check to see if any zfs filesystem has a scrub being performed on it now.
   # If it does, we cannot perform more than one scrub operation at a time.
   while true; do
@@ -66,6 +81,17 @@ do
     zpool status $i | $mailx -s "zpool scrub $i found errors" $mailto 
   fi 
 
-done
+  # Export the local pool if told to do so
+  if [[ $import_export_backup_pool == 1 ]]; then
+    zpool export $i
+    if [ $? != 0 ]; then
+      fatal_and_exit "-E- unable to export the local pool $i"
+    fi
+  fi
 
+  # Update NFS mounts
+  filesystems=`zfs list -t filesystem | grep "^$i" | grep -v "$i/$i" | grep -v "^$i " | awk '{ print $1 }' | tr '\n' ' '`
+  zfs set sharenfs=on $filesystems
+
+done