summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorChris Akritidis <43294513+cakrit@users.noreply.github.com>2019-02-25 10:58:07 +0100
committerGitHub <noreply@github.com>2019-02-25 10:58:07 +0100
commitd1f076e84281e63f09d951a85896a0689d11a66b (patch)
treeeead78d9c80675eb73d533825381f36c27e31279 /packaging
parent28d5018f31135e7991d31bf5a39ae3fafd91323a (diff)
Kickstart md5sums (#5496)
Diffstat (limited to 'packaging')
-rw-r--r--packaging/installer/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/installer/README.md b/packaging/installer/README.md
index eeb5a48cb4..1ccac0f338 100644
--- a/packaging/installer/README.md
+++ b/packaging/installer/README.md
@@ -41,7 +41,7 @@ bash <(curl -Ss https://my-netdata.io/kickstart.sh)
Verify the integrity of the script with this:
```bash
-[ "a1d98be71c7c48b093f09004d2ee62a8" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
+[ "b06a2d788c7da5998cb34c30b0a132d8" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
```
*It should print `OK, VALID` if the script is the one we ship.*
@@ -95,7 +95,7 @@ To install Netdata with a binary package on any Linux distro, any kernel version
Verify the integrity of the script with this:
```bash
-[ "29f033072c40548666fd93703449ad7c" = "$(curl -Ss https://my-netdata.io/kickstart-static64.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
+[ "e3819fc861f2383521423deb69f6cab7" = "$(curl -Ss https://my-netdata.io/kickstart-static64.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
```
*It should print `OK, VALID` if the script is the one we ship.*