summaryrefslogtreecommitdiffstats
path: root/packaging/installer/methods/kickstart.md
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2022-02-10 09:37:56 -0500
committerGitHub <noreply@github.com>2022-02-10 09:37:56 -0500
commitb70f83b42b98706a47dd9e17cbcc89c099c508d6 (patch)
tree07dcbe2e6ca765ce070266b57eb4a47801e87da1 /packaging/installer/methods/kickstart.md
parentfd30884f09d025ab7f39de682f2d1d94cd45b283 (diff)
Add proper support for Oracle Linux native packages to installer. (#12101)
They got missed somehow in the initial implementation.
Diffstat (limited to 'packaging/installer/methods/kickstart.md')
-rw-r--r--packaging/installer/methods/kickstart.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/installer/methods/kickstart.md b/packaging/installer/methods/kickstart.md
index fadb88076b..e49c8f90b7 100644
--- a/packaging/installer/methods/kickstart.md
+++ b/packaging/installer/methods/kickstart.md
@@ -136,7 +136,7 @@ To use `md5sum` to verify the integrity of the `kickstart.sh` script you will do
run the following:
```bash
-[ "0cfdc04fd4004f77ebc3c1e564ee6476" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
+[ "22039cdffef3eef21238c26605085ede" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
```
If the script is valid, this command will return `OK, VALID`.