summaryrefslogtreecommitdiffstats
path: root/release/mkchecksums.sh
blob: bdfc8d851f9ee107192e691d0c4c11e858994eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
#
# mkchecksums.sh - generate interactive checksum-checking script.
# Jordan Hubbard
#
# This script generates a cksum.sh script from a set of tarballs
# and should not be run by anyone but the release coordinator (there
# wouldn't be much point).
#
#                                       Jordan
# $Id$
#

# First generate the CKSUMS file for the benefit of those who wish to
# use it in some other way.  If we find out that folks aren't even using
# it, we should consider eliminating it at some point.  The interactive
# stuff makes it somewhat superfluous.
cksum * > CKSUMS

# Now generate a script for actually verifying the checksums.
awk 'BEGIN {print "rval=0"} { printf("if [ \"\`cksum %s%s%s\`\" != \"%s %s %s\" ]; then dialog --title Error --infobox \"Checksum error detected on %s!\" -1 -1; rval=1; fi\n", "\047", $3, "\047", $1, $2, $3, $3);} END {print "exit $rval"}' < CKSUMS > do_cksum.sh
chmod +x do_cksum.sh
OpenPOWER on IntegriCloud