diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-28 21:14:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-28 21:14:36 +0000 |
commit | 47891c8dac98554fa56bb8ac3e0f2142495529df (patch) | |
tree | 7f9265ea3747ef0627704800f005c7335607e10a /tests/installer/checksums.sh | |
parent | Adding upstream version 1.12.1. (diff) | |
download | netdata-47891c8dac98554fa56bb8ac3e0f2142495529df.tar.xz netdata-47891c8dac98554fa56bb8ac3e0f2142495529df.zip |
Adding upstream version 1.12.2.upstream/1.12.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/installer/checksums.sh')
-rwxr-xr-x | tests/installer/checksums.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/installer/checksums.sh b/tests/installer/checksums.sh new file mode 100755 index 00000000..2c027901 --- /dev/null +++ b/tests/installer/checksums.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +set -e + +if [ ! -f .gitignore ]; then + echo "Run as ./tests/installer/$(basename "$0") from top level directory of git repository" + exit 1 +fi + +for file in kickstart.sh kickstart-static64.sh; do + OLD_CHECKSUM=$(grep "$file" packaging/installer/README.md | grep md5sum | cut -d '"' -f2) + NEW_CHECKSUM="$(md5sum "packaging/installer/$file" | cut -d' ' -f1)" + if [ "$OLD_CHECKSUM" != "$NEW_CHECKSUM" ]; then + echo "Invalid checksum for $file in docs." + echo "checksum in docs: $OLD_CHECKSUM" + echo "current checksum: $NEW_CHECKSUM" + exit 1 + fi +done |