From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 3/3] backupiso: Change checksum algorithm to BLAKE2
Date: Fri, 08 Apr 2022 15:11:15 +0000 [thread overview]
Message-ID: <725ba25a-94f5-f8fe-f9cb-a26fa7d48373@ipfire.org> (raw)
In-Reply-To: <814ae2bf-c453-ce55-74eb-e2fb11b5900e@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1490 bytes --]
Reported-by: Arne Fitzenreiter <arne.fitzenreiter(a)ipfire.org>
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/scripts/backupiso | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/scripts/backupiso b/src/scripts/backupiso
index fe5376741..ef017e3be 100644
--- a/src/scripts/backupiso
+++ b/src/scripts/backupiso
@@ -80,30 +80,30 @@ then
wget --quiet -c ${URL}${ISO}
fi
-echo "Fetching ${URL}${ISO}.md5"
-wget --quiet -O ${ISO}.md5 ${URL}${ISO}.md5
+echo "Fetching ${URL}${ISO}.b2"
+wget --quiet -O ${ISO}.b2 ${URL}${ISO}.b2
-echo "Checking md5 of ${ISO}"
-md5sum --status -c ${ISO}.md5
+echo "Checking BLAKE2 checksum of ${ISO}"
+b2sum --status -c ${ISO}.b2
if [ $? -eq 0 ] || [ $? -eq 24 ]
then
- echo "md5 is OK"
+ echo "BLAKE2 checksum is OK"
else
- echo "md5 mismatch"
+ echo "BLAKE2 checksum mismatch"
echo "Fetching again ${URL}${ISO}"
wget --quiet -O ${ISO} ${URL}${ISO}
- echo "Checking again md5 of ${ISO}"
- md5sum --status -c ${ISO}.md5
+ echo "Checking BLAKE2 checksum of ${ISO} again"
+ b2sum --status -c ${ISO}.b2
if [ $? -eq 0 ] || [ $? -eq 24 ]
then
- echo "md5 is OK"
+ echo "BLAKE2 checksum is OK"
else
- echo "md5 mismatch"
- echo "aborting backup because md5 mismatch"
+ echo "BLAKE2 checksum mismatch"
+ echo "aborting backup because BLAKE2 checksum mismatch"
exit 1
fi
fi
-rm ${ISO}.md5
+rm ${ISO}.b2
echo "Remastering iso"
mkdir -p backupiso.tmp.${TS}
--
2.34.1
next prev parent reply other threads:[~2022-04-08 15:11 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-08 15:10 [PATCH 1/3] downloadsource.sh: " Peter Müller
2022-04-08 15:10 ` [PATCH 2/3] installer: Update translation message Peter Müller
2022-04-08 15:11 ` Peter Müller [this message]
2022-04-11 8:11 ` Michael Tremer
2022-04-12 14:58 ` Peter Müller
2022-04-12 16:24 ` Michael Tremer
2022-04-24 10:11 ` Peter Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=725ba25a-94f5-f8fe-f9cb-a26fa7d48373@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox