Add -f to zpool import commands
authorAlan J. Pippin <ajp@pippins.net>
Sat, 31 Dec 2022 16:54:27 +0000 (09:54 -0700)
committerAlan J. Pippin <ajp@pippins.net>
Sat, 31 Dec 2022 16:54:27 +0000 (09:54 -0700)
Change-Id: I37bd5b1989b546e32f81fe0a559372134d158700

zfs-replicate-all
zfs-scrub

index c8a8b03d81140824f1c28ce9dbcfb3f86e77bd0c..5dde8b2eccf2c93bad96e45ce176c4d896ce9512 100755 (executable)
@@ -101,7 +101,7 @@ for backup_pool in $backup_pools; do
 zpool list -H $backup_pool > $tmpfile 2>&1
 if [ $? != 0 ]; then
   if [[ $import_export_backup_pool == 1 ]]; then
-    zpool import $backup_pool >> $tmpfile 2>&1
+    zpool import -f $backup_pool >> $tmpfile 2>&1
     if [ $? != 0 ]; then
       msgs=`cat $tmpfile`
       fatal_and_exit "-E- unable to import the backup pool '$backup_pool' on $hostname: $msgs" "$mailto"
index 5388f542b112006994ecab19a9de36171322f8b0..4e220276666308cea8b63eb3b8e0b3c092928d75 100755 (executable)
--- a/zfs-scrub
+++ b/zfs-scrub
@@ -35,7 +35,7 @@ do
   zpool list -H "$i" >/dev/null 2>&1
   if [ $? != 0 ]; then
     if [[ $import_export_backup_pool == 1 ]] && [[ "$backup_pool" =~ "$i" ]]; then
-      zpool import $i
+      zpool import -f $i
       if [ $? != 0 ]; then
         fatal_and_exit "-E- unable to import the pool $i"
       fi
@@ -85,7 +85,7 @@ do
   zpool list -H "$i" >/dev/null 2>&1
   if [ $? != 0 ]; then
     if [[ $import_export_backup_pool == 1 ]] && [[ "$backup_pool" =~ "$i" ]]; then
-      zpool import $i
+      zpool import -f $i
       if [ $? != 0 ]; then
         fatal_and_exit "-E- unable to import the pool $i"
       fi