@cryptotaxi247 / netdata-1 / commits / 25007979f

Adding parenthesis (#11766)

* removing line from packaging/installer/README.md, adding parenthesis * revert import deletion * Implements cloud initiated disconnect command (#11723) * Show stats for protected mount points in diskspace plugin (#11767) Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud> * Store and submit dimension delete messages for new cloud architecture (#11765) * Enhance the dimension delete table and adjust the trigger to include chart_id and host_id * Add the aclk_process_dimension_deletion function * Change variable chart_name in aclk_upd_dimension_event (it is st->id from st.type dot st.id) * Process dimension deletion when retention updates are sent * Do not send charts if we don't have dimensions * Add check for uuid_parse return code * [ci skip] create nightly packages and update changelog * update checksum in readme Co-authored-by: Timotej S <6674623+underhood@users.noreply.github.com> Co-authored-by: Vladimir Kobal <vlad@prokk.net> Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud> Co-authored-by: Stelios Fragkakis <52996999+stelfrag@users.noreply.github.com> Co-authored-by: netdatabot <bot@netdata.cloud>

Shimon committed Nov 15, 2021 at 15:24 UTC 25007979f306c65aad738035bd4a78c1715d151c
2 files changed +2 -2
packaging/installer/kickstart.sh
+1 -1
@@ -328,7 +328,7 @@ detect_bash4() {
328 echo >&2 "No BASH is available on this system"
329 return 1
330 elif [ $((BASH_MAJOR_VERSION)) -lt 4 ]; then
331 - echo >&2 "No BASH v4+ is available on this system (installed bash is v${BASH_MAJOR_VERSION}"
331 + echo >&2 "No BASH v4+ is available on this system (installed bash is v${BASH_MAJOR_VERSION})"
332 return 1
333 fi
334 return 0
packaging/installer/methods/kickstart.md
+1 -1
@@ -96,7 +96,7 @@ To use `md5sum` to verify the integrity of the `kickstart.sh` script you will do
96 run the following:
97
98 ```bash
99 -[ "9e33680cf2d6d37233726729836fea9d" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
99 +[ "7e8b449ca44e49b7074b5b9d6022cbcc" = "$(curl -Ss https://my-netdata.io/kickstart.sh | md5sum | cut -d ' ' -f 1)" ] && echo "OK, VALID" || echo "FAILED, INVALID"
100 ```
101
102 If the script is valid, this command will return `OK, VALID`.