@cryptotaxi247 / netdata-1 / commits / 957a3f6bb

Add support for native rocky install (#12081)

maneamarius committed Feb 4, 2022 at 13:34 UTC 957a3f6bbcdcd167cd19eb01a12be4cccd5bfb7b
2 files changed +3 -2
packaging/installer/kickstart.sh
+2 -1
@@ -419,8 +419,9 @@ get_system_info() {
419 opensuse-leap)
420 DISTRO_COMPAT_NAME="opensuse"
421 ;;
422 - rhel)
422 + rocky|rhel)
423 DISTRO_COMPAT_NAME="centos"
424 + SYSVERSION=$(echo "$SYSVERSION" | cut -d'.' -f1)
425 ;;
426 *)
427 DISTRO_COMPAT_NAME="unknown"
packaging/installer/methods/kickstart.md
+1 -1
@@ -139,7 +139,7 @@ To use `md5sum` to verify the integrity of the `kickstart.sh` script you will do
139 run the following:
140
141 ```bash
142 -[ "0d1efd304a5a18019a69569d94f6f334" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
142 +[ "ec587c2196d71f90831cbe691545f92c" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
143 ```
144
145 If the script is valid, this command will return `OK, VALID`.