@cryptotaxi247 / netdata-1 / commits / 77d43c1d2

Make the kickstart checksum's placeholder value more concrete (#16843)

Make the kickstart's checksum value more concrete Do not change that

Tasos Katsoulas committed Jan 25, 2024 at 12:28 UTC 77d43c1d2376eee90c21ba33bf9e73e19cf0de1c
1 file changed +1 -1
packaging/installer/methods/kickstart.md
+1 -1
@@ -30,7 +30,7 @@ To use `md5sum` to verify the integrity of the `kickstart.sh` script you will do
30 run the following:
31
32 ```bash
33 -[ "<checksum-will-be-added-in-documentation-processing>" = "$(curl -Ss https://get.netdata.cloud/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
33 +[ "@KICKSTART_CHECKSUM@" = "$(curl -Ss https://get.netdata.cloud/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
34 ```
35
36 If the script is valid, this command will return `OK, VALID`.