Fixed typo in error message email
[zfs-ubuntu/.git] / zfs-replicate-all
index 160bc7c314242c06e8c71f66ecf7f7075a7c9ee2..afd30b89c2f280ddcb6ec796d9f6dda6ca097219 100755 (executable)
@@ -54,7 +54,7 @@ fatal_and_exit() {
   # echo message to terminal
   echo -e 2>&1 "$1"
   # send email notification
-  echo -e "$1" | $mailx -s "zfs scrub on $hostname failed" "$mailto"
+  echo -e "$1" | $mailx -s "zfs-replicate-all on $hostname failed" "$mailto"
   exit 1
 }
 
@@ -91,10 +91,10 @@ if [ $? != 0 ]; then
   if [[ $import_export_backup_pool == 1 ]]; then
     zpool import $backup_pool
     if [ $? != 0 ]; then
-      fatal_and_exit "-E- unable to import the backup pool $backup_pool" "$mailto"
+      fatal_and_exit "-E- unable to import the backup pool $backup_pool on $hostname" "$mailto"
     fi
   else 
-    fatal_and_exit "-E- The local backup pool, '$backup_pool' doesn't seem to exist." "$mailto"
+    fatal_and_exit "-E- The local backup pool on $hostname, '$backup_pool' doesn't seem to exist." "$mailto"
   fi
 fi
 
@@ -102,7 +102,7 @@ fi
 backup_pool_guid=`zpool get guid $backup_pool 2>&1 | grep $backup_pool | awk '{ print $3 }'`
 zpool get guid $backup_pool > /dev/null 2>&1
 if [ $? != 0 ]; then
-  fatal_and_exit "-E- Unable to extract the guid for the local backup pool: $backup_pool" "$mailto"
+  fatal_and_exit "-E- Unable to extract the guid for the local backup pool on $hostname: $backup_pool" "$mailto"
 fi
 
 # Setup our backup marker names
@@ -132,7 +132,7 @@ done
 if [[ $import_export_backup_pool == 1 ]]; then
   zpool export $backup_pool
   if [ $? != 0 ]; then
-    fatal_and_exit "-E- unable to export the local backup pool $backup_pool" "$mailto"
+    fatal_and_exit "-E- unable to export the local backup pool $backup_pool on $hostname" "$mailto"
   fi
 fi