Index: head/sysutils/munin-common/distinfo =================================================================== --- head/sysutils/munin-common/distinfo (revision 438351) +++ head/sysutils/munin-common/distinfo (revision 438352) @@ -1,3 +1,3 @@ -TIMESTAMP = 1488445467 -SHA256 (munin-2.0.32.tar.gz) = 132ed808f637af661b5ec8d51415638a53d175a8e0ab10878b89a28f67d018a8 -SIZE (munin-2.0.32.tar.gz) = 1342572 +TIMESTAMP = 1491998294 +SHA256 (munin-2.0.33.tar.gz) = 1c6f994bf62d6dee89554efba0733b6f96d4130ba906162c32f77587088974c4 +SIZE (munin-2.0.33.tar.gz) = 1342564 Index: head/sysutils/munin-common/files/patch-Makefile =================================================================== --- head/sysutils/munin-common/files/patch-Makefile (revision 438351) +++ head/sysutils/munin-common/files/patch-Makefile (revision 438352) @@ -1,163 +1,172 @@ ---- Makefile.orig 2014-11-24 21:46:24 UTC +--- Makefile.orig 2017-03-03 00:02:39 UTC +++ Makefile @@ -68,60 +68,47 @@ install: install-master-prime install-co install-pre: Makefile Makefile.config @$(CHECKUSER) - mkdir -p $(LOGDIR) - mkdir -p $(STATEDIR) - mkdir -p $(SPOOLDIR) - mkdir -p $(CONFDIR) - $(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) + mkdir -p $(DESTDIR)$(CONFDIR) install-master-prime: $(INFILES_MASTER) install-pre install-master - mkdir -p $(CONFDIR)/templates - mkdir -p $(CONFDIR)/static - mkdir -p $(CONFDIR)/templates/partial - mkdir -p $(CONFDIR)/munin-conf.d - mkdir -p $(LIBDIR) - mkdir -p $(BINDIR) - mkdir -p $(PERLLIB) - mkdir -p $(PERLLIB)/Munin/Master - mkdir -p $(HTMLDIR) - mkdir -p $(DBDIR) - mkdir -p $(DBDIR)/cgi-tmp - mkdir -p $(CGIDIR) - - $(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) - $(CHMOD) 0755 $(DBDIR) - - $(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp - $(CHMOD) 0755 $(DBDIR)/cgi-tmp + mkdir -p $(DESTDIR)$(CONFDIR)/templates + mkdir -p $(DESTDIR)$(CONFDIR)/static + mkdir -p $(DESTDIR)$(CONFDIR)/templates/partial + mkdir -p $(DESTDIR)$(CONFDIR)/munin-conf.d + mkdir -p $(DESTDIR)$(LIBDIR) + mkdir -p $(DESTDIR)$(BINDIR) + mkdir -p $(DESTDIR)$(HTMLDIR) + mkdir -p $(DESTDIR)$(DBDIR)/cgi-tmp + mkdir -p $(DESTDIR)$(CGIDIR) for p in master/www/*.tmpl ; do \ - $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/ ; \ + $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/ ; \ done for p in master/static/* ; do \ - $(INSTALL) -m 0644 "$$p" $(CONFDIR)/static/ ; \ + $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/static/ ; \ done for p in master/www/partial/*.tmpl; do \ - $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/partial/ ; \ + $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/partial/ ; \ done - $(INSTALL) -m 0644 master/DejaVuSansMono.ttf $(LIBDIR)/ - $(INSTALL) -m 0644 master/DejaVuSans.ttf $(LIBDIR)/ + $(INSTALL) -m 0644 master/DejaVuSansMono.ttf $(DESTDIR)$(LIBDIR)/ + $(INSTALL) -m 0644 master/DejaVuSans.ttf $(DESTDIR)$(LIBDIR)/ - test -f $(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(HTMLDIR)/.htaccess - test -f "$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(CONFDIR)/ + $(INSTALL) -m 0644 build/master/www/munin-htaccess $(DESTDIR)$(HTMLDIR)/.htaccess + $(INSTALL) -m 0644 build/master/munin.conf $(DESTDIR)$(CONFDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-cron $(BINDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-check $(BINDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-update $(LIBDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-html $(LIBDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-graph $(LIBDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-limits $(LIBDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(LIBDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(LIBDIR)/ - $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(CGIDIR)/munin-cgi-graph - $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(CGIDIR)/munin-cgi-html + $(INSTALL) -m 0755 build/master/_bin/munin-cron $(DESTDIR)$(BINDIR)/ + $(INSTALL) -m 0755 build/master/_bin/munin-check $(DESTDIR)$(BINDIR)/ + $(INSTALL) -m 0755 build/master/_bin/munin-update $(DESTDIR)$(LIBDIR)/ + $(INSTALL) -m 0755 build/master/_bin/munin-html $(DESTDIR)$(LIBDIR)/ + $(INSTALL) -m 0755 build/master/_bin/munin-graph $(DESTDIR)$(LIBDIR)/ + $(INSTALL) -m 0755 build/master/_bin/munin-limits $(DESTDIR)$(LIBDIR)/ + $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(DESTDIR)$(LIBDIR)/ + $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(DESTDIR)$(LIBDIR)/ + $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(DESTDIR)$(CGIDIR)/munin-cgi-graph + $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(DESTDIR)$(CGIDIR)/munin-cgi-html # Not ready to be installed yet # $(INSTALL) -m 0755 build/master/_bin/munin-gather $(LIBDIR)/ @@ -139,33 +126,29 @@ endif install-plugins-prime: install-plugins build $(PLUGINS) Makefile Makefile.config @$(CHECKGROUP) - mkdir -p $(CONFDIR)/plugins - mkdir -p $(CONFDIR)/plugin-conf.d - mkdir -p $(LIBDIR)/plugins - mkdir -p $(PLUGSTATE) - - $(CHOWN) root:root $(PLUGSTATE) - $(CHMOD) 0755 $(PLUGSTATE) - $(CHMOD) 0755 $(CONFDIR)/plugin-conf.d + mkdir -p $(DESTDIR)$(CONFDIR)/plugins + mkdir -p $(DESTDIR)$(CONFDIR)/plugin-conf.d + mkdir -p $(DESTDIR)$(LIBDIR)/plugins + mkdir -p $(DESTDIR)$(PLUGSTATE) for p in build/plugins/node.d/* build/plugins/node.d.$(OSTYPE)/* ; do \ if test -f "$$p" ; then \ echo Installing $$p; \ - $(INSTALL) -m 0755 $$p $(LIBDIR)/plugins/; \ + $(INSTALL) -m 0755 $$p $(DESTDIR)$(LIBDIR)/plugins/; \ fi \ done - $(HPUXONLY) mv $(LIBDIR)/plugins/*.adv $(LIBDIR) - $(INSTALL) -m 0644 build/plugins/plugins.history $(LIBDIR)/plugins/ - $(INSTALL) -m 0644 build/plugins/plugin.sh $(LIBDIR)/plugins/ + $(HPUXONLY) mv $(DESTDIR)$(LIBDIR)/plugins/*.adv $(DESTDIR)$(LIBDIR) + $(INSTALL) -m 0644 build/plugins/plugins.history $(DESTDIR)$(LIBDIR)/plugins/ + $(INSTALL) -m 0644 build/plugins/plugin.sh $(DESTDIR)$(LIBDIR)/plugins/ install-plugins-java: build-plugins-java - mkdir -p $(JAVALIBDIR) - $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(JAVALIBDIR)/ - mkdir -p $(LIBDIR)/plugins + mkdir -p $(DESTDIR)$(JAVALIBDIR) + $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(DESTDIR)$(JAVALIBDIR)/ + mkdir -p $(DESTDIR)$(LIBDIR)/plugins for p in build/plugins/node.d.java/*; do \ if test -f "$$p" ; then \ echo Installing $$p; \ - $(INSTALL) -m 0755 $$p $(LIBDIR)/plugins/; \ + $(INSTALL) -m 0755 $$p $(DESTDIR)$(LIBDIR)/plugins/; \ fi \ done @@ -176,14 +159,14 @@ install-plugins-java: build-plugins-java install-async-prime: install-async install-async: - mkdir -p $(LIBDIR) - $(INSTALL) -m 0755 build/node/_bin/munin-async $(LIBDIR)/ - $(INSTALL) -m 0755 build/node/_bin/munin-asyncd $(LIBDIR)/ + mkdir -p $(DESTDIR)$(LIBDIR) + $(INSTALL) -m 0755 build/node/_bin/munin-async $(DESTDIR)$(LIBDIR)/ + $(INSTALL) -m 0755 build/node/_bin/munin-asyncd $(DESTDIR)$(LIBDIR)/ install-node-prime: install-node-pre install-node install-node-pre: build/node/munin-node.conf install-pre - test -f "$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(CONFDIR)/ + test -f "$(DESTDIR)$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(DESTDIR)$(CONFDIR)/ install-common-prime: build-common install-common +@@ -449,7 +432,7 @@ t/install: + + # This builds */Build from Build.PL + %/Build: %/Build.PL +- cd $* && $(PERL) Build.PL ++ cd $* && $(PERL) Build.PL --config perl=$(PERL) + + build-%: %/Build + cd $* && $(PERL) Build @@ -466,6 +449,7 @@ install-%: %/Build --install_path sbin=$(SBINDIR) \ --install_path bindoc=$(MANDIR)/man1 \ --install_path libdoc=$(MANDIR)/man3 \ + --destdir=$(DESTDIR) test-%: %/Build cd $* && $(PERL) Build test --verbose=0 || true Index: head/sysutils/munin-common/munin.mk =================================================================== --- head/sysutils/munin-common/munin.mk (revision 438351) +++ head/sysutils/munin-common/munin.mk (revision 438352) @@ -1,36 +1,36 @@ -MUNIN_VERSION= 2.0.32 +MUNIN_VERSION= 2.0.33 MUNIN_SITES= http://downloads.munin-monitoring.org/munin/stable/${MUNIN_VERSION}/ DISTINFO_FILE= ${.CURDIR}/../../sysutils/munin-common/distinfo PATCHDIR= ${.CURDIR}/../../sysutils/munin-common/files PORTSCOUT= limitw:1,even DBDIR?= /var/${PORTNAME} DBDIRNODE?= /var/${PORTNAME} LOGDIR?= /var/log/${PORTNAME} STATEDIR?= /var/run/${PORTNAME} SPOOLDIR?= /var/spool/${PORTNAME} MUNIN_DIRS= BINDIR=${PREFIX}/bin \ CGIDIR=${PREFIX}/www/cgi-bin \ CONFDIR=${ETCDIR} \ DBDIR=${DBDIR} \ DBDIRNODE=${DBDIRNODE} \ DOCDIR=${DOCSDIR} \ HTMLDIR=${WWWDIR} \ LIBDIR=${DATADIR} \ LOGDIR=${LOGDIR} \ MANDIR=${MANPREFIX}/man \ SBINDIR=${PREFIX}/sbin \ STATEDIR=${STATEDIR} \ SPOOLDIR=${SPOOLDIR} MAKE_ARGS= ${MUNIN_DIRS} \ BASH=${LOCALBASE}/bin/bash \ PERL=${PERL} PERLLIB=${PREFIX}/${SITE_PERL_REL} USERS= munin GROUPS= munin PLIST_SUB= ${MUNIN_DIRS} USER=${USERS} GROUP=${GROUPS} SUB_LIST= ${MUNIN_DIRS} USER=${USERS} GROUP=${GROUPS} CPE_VENDOR= munin-monitoring MAKE_JOBS_UNSAFE= Try to use things before making thems. Index: head/sysutils/munin-node/Makefile =================================================================== --- head/sysutils/munin-node/Makefile (revision 438351) +++ head/sysutils/munin-node/Makefile (revision 438352) @@ -1,89 +1,91 @@ # Created by: Lupe Christoph # $FreeBSD$ PORTNAME= munin PORTVERSION= ${MUNIN_VERSION} CATEGORIES= sysutils perl5 MASTER_SITES= ${MUNIN_SITES} PKGNAMESUFFIX= -node MAINTAINER= mat@FreeBSD.org COMMENT= Node-specific part of Munin BUILD_DEPENDS= p5-Module-Build>=0:devel/p5-Module-Build \ p5-DateTime-HiRes>=0:devel/p5-DateTime-HiRes \ munin-common>=${MUNIN_VERSION}:sysutils/munin-common \ p5-Net-Server>=0:net/p5-Net-Server \ bash:shells/bash RUN_DEPENDS= p5-Cache-Cache>=0:devel/p5-Cache-Cache \ p5-DateTime-HiRes>=0:devel/p5-DateTime-HiRes \ munin-common>=${MUNIN_VERSION}:sysutils/munin-common \ p5-Net-Server>=0:net/p5-Net-Server \ p5-Net-CIDR>=0:net-mgmt/p5-Net-CIDR \ p5-libwww>=0:www/p5-libwww \ bash:shells/bash USES= gmake perl5 shebangfix cpe PKGMESSAGE= ${WRKDIR}/pkg-message REINPLACE_ARGS= -i "" SHEBANG_FILES= node/bin/munindoc node/sbin/munin-node node/sbin/munin-sched \ node/sbin/munin-run node/sbin/munin-node-configure .include "${.CURDIR}/../munin-common/munin.mk" ALL_TARGET= build-node build-plugins build/node/_bin/munin-async build/node/_bin/munin-asyncd INSTALL_TARGET= install-node-prime install-async-prime install-plugins-prime NO_ARCH= yes -OPTIONS_DEFINE= SNMP PERL JAVA -OPTIONS_DEFAULT= SNMP PERL +OPTIONS_DEFINE= SNMP PERL PYTHON JAVA +OPTIONS_DEFAULT= SNMP PERL PYTHON OPTIONS_SUB= yes SNMP_DESC= Include SNMP plugins PERL_DESC= Include all Perl modules (adds dependencies) JAVA_DESC= Include JAVA plugins +PYTHON_DESC= Include Python plugins SNMP_BUILD_DEPENDS= p5-Net-SNMP>=0:net-mgmt/p5-Net-SNMP SNMP_RUN_DEPENDS= p5-Net-SNMP>=0:net-mgmt/p5-Net-SNMP PERL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg \ p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML +PYTHON_USES= python JAVA_USE= java=yes JAVA_INSTALL_TARGET= install-plugins-java JAVA_BUILD= yes JAVA_RUN= yes SUB_FILES= pkg-message plugins.conf USE_RC_SUBR= munin-asyncd munin-node munin-sched post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ ${WRKSRC}/node/sbin/munin-node \ ${WRKSRC}/node/sbin/munin-node-configure \ ${WRKSRC}/node/sbin/munin-run @${REINPLACE_CMD} \ -e 's|^\(BASH[[:space:]]*:=\).*|\1 ${bash_CMD}|' \ -e 's|^\(JAVARUN[[:space:]]*:=\).*|\1 ${java_CMD}|' \ -e 's|^\(PERL[[:space:]]*:=\).*|\1 ${perl_CMD}|' \ -e 's|^\(PYTHON[[:space:]]*:=\).*|\1 ${python_CMD}|' \ -e 's|^\(RUBY[[:space:]]*:=\).*|\1 ${ruby_CMD}|' \ ${WRKSRC}/Makefile.config @${FIND} ${WRKSRC}/node/sbin -type f -name "*.orig" -delete post-install: ${MKDIR} ${STAGEDIR}${DBDIR}/plugin-state ${STAGEDIR}${SPOOLDIR}/async ${INSTALL_SCRIPT} ${.CURDIR}/plugins/* ${STAGEDIR}${DATADIR}/plugins/ ${INSTALL_DATA} ${WRKSRC}/build/node/munin-node.conf \ ${STAGEDIR}${ETCDIR}/munin-node.conf.sample ${INSTALL_DATA} ${WRKDIR}/plugins.conf \ ${STAGEDIR}${ETCDIR}/plugins.conf.sample (cd ${WRKSRC}/node/blib/bindoc; \ ${INSTALL_MAN} munin-node-configure.1 munin-node.1 munin-run.1 munin-sched.1 munindoc.1 ${STAGEDIR}${MAN1PREFIX}/man/man1; \ ) (cd ${WRKSRC}/build/doc; \ ${INSTALL_MAN} munin-node.conf.5 ${STAGEDIR}${MAN5PREFIX}/man/man5; \ ${INSTALL_MAN} munin.8 ${STAGEDIR}${MAN8PREFIX}/man/man8; \ ) ${INSTALL_DATA} ${FILESDIR}/newsyslog ${STAGEDIR}${ETCDIR}/munin-node.newsyslog .include Index: head/sysutils/munin-node/pkg-plist =================================================================== --- head/sysutils/munin-node/pkg-plist (revision 438351) +++ head/sysutils/munin-node/pkg-plist (revision 438352) @@ -1,267 +1,267 @@ bin/munindoc @sample %%ETCDIR%%/munin-node.conf.sample @dir %%ETCDIR%%/plugin-conf.d @sample %%ETCDIR%%/plugins.conf.sample %%ETCDIR%%/plugin-conf.d/plugins.conf @comment the directory exists in STAGEDIR because it is present in @comment BSD.local.dist but if not registered here, it will not exist in PREFIX @comment when the package is installed. @dir etc/newsyslog.conf.d @sample %%ETCDIR%%/munin-node.newsyslog etc/newsyslog.conf.d/munin-node %%SITE_PERL%%/Munin/Node/Config.pm %%SITE_PERL%%/Munin/Node/Configure/Debug.pm %%SITE_PERL%%/Munin/Node/Configure/History.pm %%SITE_PERL%%/Munin/Node/Configure/HostEnumeration.pm %%SITE_PERL%%/Munin/Node/Configure/Plugin.pm %%SITE_PERL%%/Munin/Node/Configure/PluginList.pm %%SITE_PERL%%/Munin/Node/Logger.pm %%SITE_PERL%%/Munin/Node/OS.pm %%SITE_PERL%%/Munin/Node/ProxySpooler.pm %%SITE_PERL%%/Munin/Node/SNMPConfig.pm %%SITE_PERL%%/Munin/Node/Server.pm %%SITE_PERL%%/Munin/Node/Service.pm %%SITE_PERL%%/Munin/Node/Session.pm %%SITE_PERL%%/Munin/Node/SpoolReader.pm %%SITE_PERL%%/Munin/Node/SpoolWriter.pm %%SITE_PERL%%/Munin/Node/Utils.pm %%SITE_PERL%%/Munin/Plugin.pm %%SITE_PERL%%/Munin/Plugin/Pgsql.pm %%SITE_PERL%%/Munin/Plugin/SNMP.pm man/man1/munin-node-configure.1.gz man/man1/munin-node.1.gz man/man1/munin-run.1.gz man/man1/munin-sched.1.gz man/man1/munindoc.1.gz man/man3/Munin::Node::Config.3.gz man/man3/Munin::Node::Configure::Debug.3.gz man/man3/Munin::Node::Configure::History.3.gz man/man3/Munin::Node::Configure::HostEnumeration.3.gz man/man3/Munin::Node::Configure::Plugin.3.gz man/man3/Munin::Node::Configure::PluginList.3.gz man/man3/Munin::Node::Logger.3.gz man/man3/Munin::Node::OS.3.gz man/man3/Munin::Node::ProxySpooler.3.gz man/man3/Munin::Node::SNMPConfig.3.gz man/man3/Munin::Node::Server.3.gz man/man3/Munin::Node::Service.3.gz man/man3/Munin::Node::Session.3.gz man/man3/Munin::Node::SpoolReader.3.gz man/man3/Munin::Node::SpoolWriter.3.gz man/man3/Munin::Node::Utils.3.gz man/man3/Munin::Plugin.3.gz man/man3/Munin::Plugin::Pgsql.3.gz man/man3/Munin::Plugin::SNMP.3.gz man/man5/munin-node.conf.5.gz man/man8/munin.8.gz sbin/munin-node sbin/munin-node-configure sbin/munin-run sbin/munin-sched %%DATADIR%%/munin-async %%DATADIR%%/munin-asyncd %%JAVA%%%%DATADIR%%/munin-jmx-plugins.jar %%DATADIR%%/plugins/amavis %%DATADIR%%/plugins/apache_accesses %%DATADIR%%/plugins/apache_processes %%DATADIR%%/plugins/apache_volume %%DATADIR%%/plugins/apc_envunit_ %%DATADIR%%/plugins/apc_nis %%DATADIR%%/plugins/asterisk_channels %%DATADIR%%/plugins/asterisk_channelstypes %%DATADIR%%/plugins/asterisk_codecs %%DATADIR%%/plugins/asterisk_meetme %%DATADIR%%/plugins/asterisk_meetmeusers %%DATADIR%%/plugins/asterisk_sipchannels %%DATADIR%%/plugins/asterisk_sippeers %%DATADIR%%/plugins/asterisk_voicemail %%DATADIR%%/plugins/bind9 %%DATADIR%%/plugins/bind9_rndc %%DATADIR%%/plugins/cmc_tc_sensor_ %%DATADIR%%/plugins/coretemp %%DATADIR%%/plugins/courier_ %%DATADIR%%/plugins/courier_mta_mailqueue %%DATADIR%%/plugins/courier_mta_mailstats %%DATADIR%%/plugins/courier_mta_mailvolume %%DATADIR%%/plugins/cpu %%DATADIR%%/plugins/cupsys_pages %%DATADIR%%/plugins/dev_cpu_ %%DATADIR%%/plugins/df %%DATADIR%%/plugins/df_inode %%DATADIR%%/plugins/dhcpd3 %%DATADIR%%/plugins/digitemp_ %%DATADIR%%/plugins/ejabberd_ %%DATADIR%%/plugins/exim_mailqueue %%DATADIR%%/plugins/exim_mailqueue_alt %%DATADIR%%/plugins/exim_mailstats %%DATADIR%%/plugins/fail2ban %%DATADIR%%/plugins/foldingathome %%DATADIR%%/plugins/foldingathome_rank %%DATADIR%%/plugins/foldingathome_wu %%DATADIR%%/plugins/freeradius_acct %%DATADIR%%/plugins/freeradius_auth %%DATADIR%%/plugins/freeradius_proxy_acct %%DATADIR%%/plugins/freeradius_proxy_auth %%DATADIR%%/plugins/haproxy_ %%DATADIR%%/plugins/haproxy_ng %%DATADIR%%/plugins/hddtemp %%DATADIR%%/plugins/hddtemp2 %%DATADIR%%/plugins/hddtemp_smartctl %%DATADIR%%/plugins/hddtempd %%PERL%%%%DATADIR%%/plugins/hp2000_ %%DATADIR%%/plugins/http_loadtime %%DATADIR%%/plugins/if_ %%DATADIR%%/plugins/if_errcoll_ %%DATADIR%%/plugins/if_packets_ %%DATADIR%%/plugins/ifx_concurrent_sessions_ %%DATADIR%%/plugins/iostat %%DATADIR%%/plugins/ipac-ng %%DATADIR%%/plugins/ipmi_ -%%DATADIR%%/plugins/ipmi_sensor_ +%%PYTHON%%%%DATADIR%%/plugins/ipmi_sensor_ %%DATADIR%%/plugins/ircu %%JAVA%%%%DATADIR%%/plugins/jmx_ %%JAVA%%%%DATADIR%%/plugins/jmx_tomcat_dbpools %%DATADIR%%/plugins/load %%DATADIR%%/plugins/loggrep %%DATADIR%%/plugins/lpstat %%DATADIR%%/plugins/mailman %%DATADIR%%/plugins/mailscanner %%DATADIR%%/plugins/mbmon_ %%DATADIR%%/plugins/memcached_ %%DATADIR%%/plugins/memory %%DATADIR%%/plugins/mhttping %%DATADIR%%/plugins/multiping %%DATADIR%%/plugins/multips %%DATADIR%%/plugins/multips_memory %%DATADIR%%/plugins/munin_stats %%DATADIR%%/plugins/munin_update %%DATADIR%%/plugins/mysql_ %%DATADIR%%/plugins/mysql_bytes %%DATADIR%%/plugins/mysql_innodb %%DATADIR%%/plugins/mysql_isam_space_ %%DATADIR%%/plugins/mysql_queries %%DATADIR%%/plugins/mysql_slowqueries %%DATADIR%%/plugins/mysql_threads %%DATADIR%%/plugins/named %%DATADIR%%/plugins/netopia %%DATADIR%%/plugins/netstat %%DATADIR%%/plugins/nginx_request %%DATADIR%%/plugins/nginx_status %%DATADIR%%/plugins/nomadix_users_ %%PERL%%%%DATADIR%%/plugins/ntp_ %%DATADIR%%/plugins/ntp_kernel_err %%DATADIR%%/plugins/ntp_kernel_pll_freq %%DATADIR%%/plugins/ntp_kernel_pll_off %%DATADIR%%/plugins/ntp_offset %%PERL%%%%DATADIR%%/plugins/ntp_states %%DATADIR%%/plugins/nut_misc %%DATADIR%%/plugins/nut_volts %%DATADIR%%/plugins/nutups_ %%DATADIR%%/plugins/nvidia_ %%DATADIR%%/plugins/open_files %%DATADIR%%/plugins/openvpn %%DATADIR%%/plugins/perdition %%PERL%%%%DATADIR%%/plugins/pgbouncer_connections %%PERL%%%%DATADIR%%/plugins/pgbouncer_requests %%DATADIR%%/plugins/ping_ %%DATADIR%%/plugins/plugin.sh %%DATADIR%%/plugins/plugins.history %%DATADIR%%/plugins/pm3users_ %%DATADIR%%/plugins/pop_stats %%DATADIR%%/plugins/postfix_mailqueue %%DATADIR%%/plugins/postfix_mailstats %%DATADIR%%/plugins/postfix_mailvolume %%PERL%%%%DATADIR%%/plugins/postgres_autovacuum %%PERL%%%%DATADIR%%/plugins/postgres_bgwriter %%PERL%%%%DATADIR%%/plugins/postgres_cache_ %%PERL%%%%DATADIR%%/plugins/postgres_checkpoints %%PERL%%%%DATADIR%%/plugins/postgres_connections_ %%PERL%%%%DATADIR%%/plugins/postgres_connections_db %%PERL%%%%DATADIR%%/plugins/postgres_locks_ %%PERL%%%%DATADIR%%/plugins/postgres_oldest_prepared_xact_ %%PERL%%%%DATADIR%%/plugins/postgres_prepared_xacts_ %%PERL%%%%DATADIR%%/plugins/postgres_querylength_ %%PERL%%%%DATADIR%%/plugins/postgres_scans_ %%PERL%%%%DATADIR%%/plugins/postgres_size_ %%PERL%%%%DATADIR%%/plugins/postgres_streaming_ %%PERL%%%%DATADIR%%/plugins/postgres_transactions_ %%PERL%%%%DATADIR%%/plugins/postgres_tuples_ %%PERL%%%%DATADIR%%/plugins/postgres_users %%PERL%%%%DATADIR%%/plugins/postgres_xlog %%DATADIR%%/plugins/processes %%DATADIR%%/plugins/proxy_plugin %%DATADIR%%/plugins/ps_ %%DATADIR%%/plugins/psu_ %%DATADIR%%/plugins/qmailqstat %%DATADIR%%/plugins/qmailscan %%DATADIR%%/plugins/qmailscan-simple %%DATADIR%%/plugins/samba %%DATADIR%%/plugins/sendmail_mailqueue %%DATADIR%%/plugins/sendmail_mailstats %%DATADIR%%/plugins/sendmail_mailtraffic %%DATADIR%%/plugins/slapd_ %%DATADIR%%/plugins/slapd_bdb_cache_ %%PERL%%%%DATADIR%%/plugins/slony_lag_ -%%DATADIR%%/plugins/smart_ +%%PYTHON%%%%DATADIR%%/plugins/smart_ %%SNMP%%%%DATADIR%%/plugins/snmp__cpuload %%SNMP%%%%DATADIR%%/plugins/snmp__df %%SNMP%%%%DATADIR%%/plugins/snmp__df_ram %%SNMP%%%%DATADIR%%/plugins/snmp__fc_if_ %%SNMP%%%%DATADIR%%/plugins/snmp__fc_if_err_ %%SNMP%%%%DATADIR%%/plugins/snmp__if_ %%SNMP%%%%DATADIR%%/plugins/snmp__if_err_ %%SNMP%%%%DATADIR%%/plugins/snmp__if_multi %%SNMP%%%%DATADIR%%/plugins/snmp__load %%SNMP%%%%DATADIR%%/plugins/snmp__memory %%SNMP%%%%DATADIR%%/plugins/snmp__netapp_diskusage_ %%SNMP%%%%DATADIR%%/plugins/snmp__netapp_inodeusage_ %%SNMP%%%%DATADIR%%/plugins/snmp__netstat %%SNMP%%%%DATADIR%%/plugins/snmp__print_pages %%SNMP%%%%DATADIR%%/plugins/snmp__print_supplies %%SNMP%%%%DATADIR%%/plugins/snmp__processes %%SNMP%%%%DATADIR%%/plugins/snmp__rdp_users %%SNMP%%%%DATADIR%%/plugins/snmp__sensors_fsc_bx_fan %%SNMP%%%%DATADIR%%/plugins/snmp__sensors_fsc_bx_temp %%SNMP%%%%DATADIR%%/plugins/snmp__sensors_fsc_fan %%SNMP%%%%DATADIR%%/plugins/snmp__sensors_fsc_temp %%SNMP%%%%DATADIR%%/plugins/snmp__sensors_mbm_fan %%SNMP%%%%DATADIR%%/plugins/snmp__sensors_mbm_temp %%SNMP%%%%DATADIR%%/plugins/snmp__sensors_mbm_volt %%SNMP%%%%DATADIR%%/plugins/snmp__swap %%SNMP%%%%DATADIR%%/plugins/snmp__uptime %%SNMP%%%%DATADIR%%/plugins/snmp__users %%SNMP%%%%DATADIR%%/plugins/snmp__winload %%SNMP%%%%DATADIR%%/plugins/snmp__winmem %%DATADIR%%/plugins/snort_alerts %%DATADIR%%/plugins/snort_bytes_pkt %%DATADIR%%/plugins/snort_drop_rate %%DATADIR%%/plugins/snort_pattern_match %%DATADIR%%/plugins/snort_pkts %%DATADIR%%/plugins/snort_traffic %%DATADIR%%/plugins/spamstats %%DATADIR%%/plugins/squeezebox_ %%DATADIR%%/plugins/squid_cache %%DATADIR%%/plugins/squid_icp %%DATADIR%%/plugins/squid_objectsize %%DATADIR%%/plugins/squid_requests %%DATADIR%%/plugins/squid_traffic %%DATADIR%%/plugins/surfboard %%DATADIR%%/plugins/swap %%DATADIR%%/plugins/sybase_space %%DATADIR%%/plugins/systat %%DATADIR%%/plugins/tomcat_ %%DATADIR%%/plugins/tomcat_access %%DATADIR%%/plugins/tomcat_jvm %%DATADIR%%/plugins/tomcat_threads %%DATADIR%%/plugins/tomcat_volume %%DATADIR%%/plugins/uptime %%DATADIR%%/plugins/users %%PERL%%%%DATADIR%%/plugins/varnish_ %%DATADIR%%/plugins/vmstat %%DATADIR%%/plugins/zfs_compress %%DATADIR%%/plugins/zimbra_ %%DATADIR%%/plugins/zpool_chksum %%DATADIR%%/plugins/zpool_dedup @dir(%%USER%%,%%GROUP%%,) %%DBDIRNODE%%/plugin-state @dir %%ETCDIR%%/plugins @dir(%%USER%%,%%GROUP%%,) %%SPOOLDIR%%/async @comment @dir %%SPOOLDIR%% @comment @dir %%DBDIRNODE%%