summaryrefslogtreecommitdiffstats
path: root/netdata-installer.sh
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-03-03 22:38:31 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-03-03 22:38:31 +0200
commitd2331f12ac51cd08f981dc824e0db7a42c9dc0e5 (patch)
tree4e203dc438828bce619b4bd407a5efbbc07432a3 /netdata-installer.sh
parent8732643451056cb1ae257728cf26dc968d2e3cc6 (diff)
enabled freeipmi.plugin automatically when possible; make freeipmi.plugin netdata friendly;
Diffstat (limited to 'netdata-installer.sh')
-rwxr-xr-xnetdata-installer.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/netdata-installer.sh b/netdata-installer.sh
index 680772c7ec..408e3f3dfc 100755
--- a/netdata-installer.sh
+++ b/netdata-installer.sh
@@ -99,8 +99,10 @@ Valid <installer options> are:
Start immediately building it.
--enable-plugin-freeipmi
+ --disable-plugin-freeipmi
- Enable the FreeIPMI plugin.
+ Enable/disable the FreeIPMI plugin.
+ Default: enable it when libipmimonitoring is available.
--zlib-is-really-here
--libs-are-really-here
@@ -193,6 +195,10 @@ do
then
NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS} --enable-plugin-freeipmi"
shift 1
+ elif [ "$1" = "--disable-plugin-freeipmi" ]
+ then
+ NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS} --disable-plugin-freeipmi"
+ shift 1
elif [ "$1" = "--help" -o "$1" = "-h" ]
then
usage