Fix the ACLK installation with the installer switch (#8443)
Andrew Moss committed
Mar 19, 2020 at 19:43 UTC
d674d045474f39a2f8a9138b8da6a435e47e7a43
1 file changed
+2
-1
netdata-installer.sh
+2
-1
@@ -280,7 +280,7 @@ while [ -n "${1}" ]; do
280
NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS//--disable-cloud/} --disable-cloud"
281
;;
282
"--cloud-testing") # Temporary, until we flip the feature flag. Internal use only
283
- NETDATA_DISABLE_CLOUD=0
283
+ unset NETDATA_DISABLE_CLOUD
284
NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS//--disable-cloud/} --enable-cloud"
285
;;
286
"--install")
@@ -472,6 +472,7 @@ copy_libmosquitto() {
472
473
bundle_libmosquitto() {
474
if [ -n "${NETDATA_DISABLE_CLOUD}" ]; then
475
+ echo "Skipping cloud"
476
return 0
477
fi
478