diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-03-16 07:50:45 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-03-16 07:50:45 +0000 |
commit | 87cce1817d03daca8c31be82d781ec47a4560087 (patch) | |
tree | 06cb3e407ea32dcc385cbe4fb77e251e34bc1e68 /tests/installer/checksums.sh | |
parent | Releasing debian version 1.12.2-2. (diff) | |
download | netdata-87cce1817d03daca8c31be82d781ec47a4560087.tar.xz netdata-87cce1817d03daca8c31be82d781ec47a4560087.zip |
Merging upstream version 1.13.0.
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, 0 insertions, 19 deletions
diff --git a/tests/installer/checksums.sh b/tests/installer/checksums.sh deleted file mode 100755 index 2c0279015..000000000 --- a/tests/installer/checksums.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/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 |