summaryrefslogtreecommitdiffstats
path: root/packaging/installer/README.md
diff options
context:
space:
mode:
authorJames Mills <1290234+prologic@users.noreply.github.com>2020-01-17 01:12:02 +0200
committerGitHub <noreply@github.com>2020-01-17 01:12:02 +0200
commitc7e13846a87054d1e6e412d8edbc25b9dcbc684f (patch)
treeb93b52ed2b9d1aa886a86ee18a381349dc3f33a7 /packaging/installer/README.md
parent8a3c7a7e7be13303709d8064f64a7efd5c361c8e (diff)
Fixes support for read-only /lib on SystemD systems like CoreOS in kickstart static64 (#7726)
* Fix formatting of functions.sh and errors found by shellcheck * Added support for other SystemD systems where /lib is read-only (e.g: CoreOS) * Fix minor typo(s)/grammar with safe_256sum() function * Fix shellcheck warnings in safe_256sum() function * Update the md5sum of the kickstart-static64.sh script in our docs to match
Diffstat (limited to 'packaging/installer/README.md')
-rw-r--r--packaging/installer/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/installer/README.md b/packaging/installer/README.md
index 749641acf6..bdc2965637 100644
--- a/packaging/installer/README.md
+++ b/packaging/installer/README.md
@@ -116,7 +116,7 @@ This script installs Netdata at `/opt/netdata`.
Verify the integrity of the script with this:
```bash
-[ "9e0901736a8ed5ebcc84bc1c2c7b5db9" = "$(curl -Ss https://my-netdata.io/kickstart-static64.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
+[ "986e7756219717b075675ebe9b812916" = "$(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.*