From 9156c1a4bf85e6a6fb9f27eb387cc95414b7cab0 Mon Sep 17 00:00:00 2001 From: Carl Baldwin Date: Thu, 10 Nov 2005 08:28:23 -0700 Subject: [PATCH] dd should append to the logfile rather than overwrite it. --- scripts/burn-imgs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/burn-imgs.sh b/scripts/burn-imgs.sh index 0870b0d..a2793fe 100755 --- a/scripts/burn-imgs.sh +++ b/scripts/burn-imgs.sh @@ -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 -- 2.34.1