From c47e7aac52246c0748f0e4c1b31d54641da3464e Mon Sep 17 00:00:00 2001 From: James Mills <1290234+prologic@users.noreply.github.com> Date: Fri, 31 Jan 2020 22:52:22 +1000 Subject: Fixes a bug in DO_NOT_TRACK expression (#7929) * Fixed bug in DO_NOT_TRACK expression * Fix kickstart-static64 checksum in docs. Co-authored-by: Austin S. Hemmelgarn --- netdata-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'netdata-installer.sh') diff --git a/netdata-installer.sh b/netdata-installer.sh index 3d73ae5164..49b5433598 100755 --- a/netdata-installer.sh +++ b/netdata-installer.sh @@ -888,7 +888,7 @@ install_go # ----------------------------------------------------------------------------- progress "Telemetry configuration" -if [ ! "$DO_NOT_TRACK" -eq 0 ] || [ -n "$DO_NOT_TRACK" ]; then +if [ ! "${DO_NOT_TRACK:-0}" -eq 0 ] || [ -n "$DO_NOT_TRACK" ]; then NETDATA_DISABLE_TELEMETRY=1 fi -- cgit v1.2.3