We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e2f897 commit 6704791Copy full SHA for 6704791
build-scripts/bootstrap-tarballs
@@ -76,8 +76,12 @@ make tar-package # package tarball (containing all files as if they were
76
mv cfengine-masterfiles*.tar.gz $BASEDIR/output/tarballs/
77
make distclean
78
79
+# Compute a checksum list that can be used to verify the integrity of the
80
+# tarballs
81
cd $BASEDIR/output/tarballs
82
sha256sum *.tar.gz > sha256sums.txt
83
+# Add the BSD (16-bit) checksum of the checksum list to it's filename. This way
84
+# you can verify the integrity of the checksum list itself.
85
CKSUM=`sum sha256sums.txt | cut -d ' ' -f 1`
86
mv sha256sums.txt sha256sums.$CKSUM.txt
87
0 commit comments