summaryrefslogtreecommitdiffstats
path: root/packaging/installer/README.md
diff options
context:
space:
mode:
authorKonstantinos Natsakis <5933427+knatsakis@users.noreply.github.com>2019-10-28 17:37:42 +0200
committerGitHub <noreply@github.com>2019-10-28 17:37:42 +0200
commitb3ce23cfa69508425f522b6f7fbbcd1a8dfdf68e (patch)
treec53e1b3592dd801de4b120c165199b0a59a0366a /packaging/installer/README.md
parent4297f8251c22c8b7de5dfe42056624ad8bb64c4c (diff)
kickstart-static64.sh passes --auto-update to netdata-latest.gz.run (#7076)
* kickstart-static64.sh passes --auto-update to netdata-latest.gz.run * Minor nitpicks for kickstart-static64.sh
Diffstat (limited to 'packaging/installer/README.md')
-rw-r--r--packaging/installer/README.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/packaging/installer/README.md b/packaging/installer/README.md
index eb6d894234..b56bd6596a 100644
--- a/packaging/installer/README.md
+++ b/packaging/installer/README.md
@@ -109,7 +109,7 @@ This script installs Netdata at `/opt/netdata`.
Verify the integrity of the script with this:
```bash
-[ "c529e4eb7ce201845cef605d450f8380" = "$(curl -Ss https://my-netdata.io/kickstart-static64.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
+[ "7c3471506f548968edbbf8d085fbea65" = "$(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.*
@@ -596,7 +596,11 @@ By default, Netdata's installation scripts enable automatic updates for both nig
If you would prefer to manually update your Netdata agent, you can disable automatic updates by using the `--no-updates` option when you install or update Netdata using the [one-line installation script](#one-line-installation).
```bash
+# kickstart.sh
bash <(curl -Ss https://my-netdata.io/kickstart.sh) --no-updates
+
+# kickstart-static64.sh
+bash <(curl -Ss https://my-netdata.io/kickstart-static64.sh) --no-updates
```
With automatic updates disabled, you can choose exactly when and how you [update Netdata](UPDATE.md).