dd should append to the logfile rather than overwrite it.
authorCarl Baldwin <cnb@ball.(none)>
Thu, 10 Nov 2005 15:28:23 +0000 (08:28 -0700)
committerCarl Baldwin <cnb@ball.(none)>
Thu, 10 Nov 2005 15:28:23 +0000 (08:28 -0700)
scripts/burn-imgs.sh

index 0870b0d87b70a69296bfda06f6993b091eb603bf..a2793fe48136326c89fe571fa6baf49071e7835e 100755 (executable)
@@ -44,7 +44,7 @@ $cronstopstart start
 
 # Now verify the disk by running md5sum on the entire contents of the disk
 md5sum=$(tempfile)
-dd if=$dev bs=1M count=4440 2>$logfile | md5sum | awk '{print$1}' > $md5sum
+dd if=$dev bs=1M count=4440 2>>$logfile | md5sum | awk '{print$1}' > $md5sum
 
 # Check that the md5sums match
 if ! cmp $md5sum $img.md5sum; then