More stuff
authorCarl Baldwin <cnb@ball.(none)>
Fri, 28 Oct 2005 04:07:53 +0000 (22:07 -0600)
committerCarl Baldwin <cnb@ball.(none)>
Fri, 28 Oct 2005 04:07:53 +0000 (22:07 -0600)
scripts/burn-imgs.sh

index c128752ed9fe06ec58370c59dfc76b6b51346f3f..a180c4d494cac54a3f4cc6243780baba172318d5 100755 (executable)
@@ -23,11 +23,17 @@ if [ -n "$img" ]; then
     exit 1
   fi
 
+  {
+    echo "Image md5sum:"
+    cat $img.md5sum
+    echo
+    echo "md5sum of burned disks:"
+    cat $img.stat
+  } | mailx -s "DVD burned.  File it as ${img%.*}" $mailto
+
   if [ "$(wc -l $img.stat 2>/dev/null)" == "2" ]; then
     echo "Burned the image twice.  Removing it!"
     rm -f $img{,.md5sum,.stat}
     rmdir $img.mnt
   fi
-
-  echo $img | mailx -s "DVD burned.  File it as ${img%.*}" $mailto
 fi