summaryrefslogtreecommitdiffstats
path: root/netdata-installer.sh
diff options
context:
space:
mode:
authorTasos Katsoulas <12612986+tkatsoulas@users.noreply.github.com>2023-12-29 16:33:27 +0200
committerGitHub <noreply@github.com>2023-12-29 16:33:27 +0200
commit77166afb0588f326bf6ab43bb94af926d119538b (patch)
treefd3f692bd734b4ab7c5f9ad7fff18f3843bf464f /netdata-installer.sh
parentaf798e3b94123979f0011e0f385b1c46a78466fc (diff)
fix minor omission on netdata-installers arguments (#16690)
Enable/disable options for Prometheus remote write where always set to true
Diffstat (limited to 'netdata-installer.sh')
-rwxr-xr-xnetdata-installer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/netdata-installer.sh b/netdata-installer.sh
index 5d424fe410..83b112edad 100755
--- a/netdata-installer.sh
+++ b/netdata-installer.sh
@@ -326,7 +326,7 @@ while [ -n "${1}" ]; do
# TODO: Needs CMake Support
;;
"--enable-exporting-prometheus-remote-write" | "--enable-backend-prometheus-remote-write") EXPORTER_PROMETHEUS=1 ;;
- "--disable-exporting-prometheus-remote-write" | "--disable-backend-prometheus-remote-write") EXPORTER_PROMETHEUS=1 ;;
+ "--disable-exporting-prometheus-remote-write" | "--disable-backend-prometheus-remote-write") EXPORTER_PROMETHEUS=0 ;;
"--enable-exporting-mongodb" | "--enable-backend-mongodb") EXPORTER_MONGODB=1 ;;
"--disable-exporting-mongodb" | "--disable-backend-mongodb") EXPORTER_MONGODB=0 ;;
"--enable-exporting-pubsub")