f9e9c0eceb
Delete old cksum stuff before remaking it.
26 lines
1.0 KiB
Bash
26 lines
1.0 KiB
Bash
#!/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: mkchecksums.sh,v 1.1 1994/11/17 15:20:04 jkh Exp $
|
|
#
|
|
|
|
# Remove any previous attempts.
|
|
rm -rf CKSUMS do_cksum.sh
|
|
|
|
# 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
|