Added code to destroy backup markers on local machine if replicate aborts
authorAlan J. Pippin <ajp@pippins.net>
Sat, 17 Jan 2009 04:44:40 +0000 (21:44 -0700)
committerAlan J. Pippin <ajp@pippins.net>
Sat, 17 Jan 2009 04:44:40 +0000 (21:44 -0700)
zfs-replicate

index a082ce3fe9de2214ca9d07e2c9dbf5f7fe76ac25..c7e7c2faa191e30517683605a4258f3fd59608ee 100755 (executable)
@@ -36,9 +36,24 @@ cleanup() {
 }
 fatal_and_exit() {
   echo -e 2>&1 "$1"
+  # Destroy the backup markers on the local filesystem if they exist
+  if [[ -n "$current_backup_marker" ]]; then
+    zfs list -t snapshot ${local_pool}/${current_backup_marker} > /dev/null 2>&1
+    if [ $? == 0 ]; then
+      $zfs destroy ${local_pool}/${current_backup_marker}
+    fi
+  fi
+  if [[ -n "$previous_backup_marker" ]]; then
+    zfs list -t snapshot ${local_pool}/${previous_backup_marker} > /dev/null 2>&1 
+    if [ $? == 0 ]; then
+      $zfs destroy ${local_pool}/${previous_backup_marker}
+    fi
+  fi
+  # send email notification
   if [[ -n "$2" ]]; then
     echo -e "$1" | $mailx -s "zfs replicate on $hostname failed" "$2"
   fi
+  # exit
   exit 1
 }
 trap fatal_and_exit INT