summaryrefslogtreecommitdiffstats
path: root/netdata-installer.sh
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-03-17 00:03:52 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-03-17 00:03:52 +0200
commit8a870a65d0afc49455b4b5ff2b0ce585e0bd8339 (patch)
tree89fbb1dea0cf358796004fbab53b8f7b8c15a670 /netdata-installer.sh
parent0711ceaacadf4b435b11377ce9f0e65392675d2a (diff)
update nfacct plugin to match current netdata development
Diffstat (limited to 'netdata-installer.sh')
-rwxr-xr-xnetdata-installer.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/netdata-installer.sh b/netdata-installer.sh
index d11e96236c..f926f14f28 100755
--- a/netdata-installer.sh
+++ b/netdata-installer.sh
@@ -104,6 +104,12 @@ Valid <installer options> are:
Enable/disable the FreeIPMI plugin.
Default: enable it when libipmimonitoring is available.
+ --enable-plugin-nfacct
+ --disable-plugin-nfacct
+
+ Enable/disable the nfacct plugin.
+ Default: enable it when libmnl and libnetfilter_acct are available.
+
--enable-lto
--disable-lto
@@ -205,6 +211,14 @@ do
then
NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS} --disable-plugin-freeipmi"
shift 1
+ elif [ "$1" = "--enable-plugin-nfacct" ]
+ then
+ NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS} --enable-plugin-nfacct"
+ shift 1
+ elif [ "$1" = "--disable-plugin-nfacct" ]
+ then
+ NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS} --disable-plugin-nfacct"
+ shift 1
elif [ "$1" = "--enable-lto" ]
then
NETDATA_CONFIGURE_OPTIONS="${NETDATA_CONFIGURE_OPTIONS} --enable-lto"