Add feature to try rollback twice if it fails
authorAlan J. Pippin <alan@pippins.net>
Sun, 5 Apr 2020 16:36:50 +0000 (10:36 -0600)
committerAlan J. Pippin <ajp@pippins.net>
Sun, 5 Apr 2020 16:36:50 +0000 (10:36 -0600)
Change-Id: I7b502fbfecaa3269e1dea64b110e95a84ce9b1b7

zfs-replicate

index 9dfd9f8cbef7997e28bb6bd9ce72d164ce812250..02f9924ad6c8a7a2f48ded18ab10f60cf62da2df 100755 (executable)
@@ -203,9 +203,13 @@ if [ $no_markers == 0 ]; then
   # backup was interrupted for some reason. If we don't do this, the zfs send -R command
   # below may complain about snaps already existing as it tries to resend from the 
   # previous backup marker again from a previously interrupted replicate.
-  $zfs rollback -r ${backup_pool}/${previous_backup_marker} 
+  $zfs rollback -rf ${backup_pool}/${previous_backup_marker} 
   if [ $? != 0 ]; then
-    fatal_and_exit "-E- remote incremental $zfs rollback command failed on $hostname" $mailto
+    sleep 120
+    $zfs rollback -rf ${backup_pool}/${previous_backup_marker}
+    if [ $? != 0 ]; then
+      fatal_and_exit "-E- remote incremental $zfs rollback command failed on $hostname" $mailto
+    fi
   fi
   # Now it should be safe to send the snaps
   replicate "$zfs send -Rc -I${previous_backup_marker} ${current_backup_marker}"