diff options
Diffstat (limited to 'net-mgmt')
22 files changed, 0 insertions, 1101 deletions
diff --git a/net-mgmt/collectd5/Makefile b/net-mgmt/collectd5/Makefile deleted file mode 100644 index 58a84643c3fe..000000000000 --- a/net-mgmt/collectd5/Makefile +++ /dev/null @@ -1,227 +0,0 @@ -# New ports collection makefile for: collectd -# Date created: Sat Sep 29 05:19:31 PDT 2007 -# Whom: Matt Peterson <matt@peterson.org> -# -# $FreeBSD$ -# - -PORTNAME= collectd -PORTVERSION= 4.5.1 -PORTREVISION= 1 -CATEGORIES= net-mgmt -MASTER_SITES= http://collectd.org/files/ \ - http://mirror.roe.ch/dist/${PORTNAME}/ - -MAINTAINER= daniel@roe.ch -COMMENT= Systems & network statistics collection daemon - -USE_GMAKE= yes -GNU_CONFIGURE= yes -WANT_GNOME= yes - -OPTIONS= CGI "Install collection.cgi (requires RRDTOOL)" Off \ - DEBUG "Enable debugging" Off \ - APACHE "Input: Apache mod_status (libcurl)" Off \ - APCUPS "Input: APC UPS (apcupsd)" Off \ - NUTUPS "Input: NUT UPS daemon" Off \ - INTERFACE "Input: Network interfaces (libstatgrab)" On \ - MBMON "Input: MBMon" Off \ - MYSQL "Input: MySQL" Off \ - PING "Input: Network latency (liboping)" On \ - SNMP "Input: SNMP" On \ - XMMS "Input: XMMS" Off \ - RRDTOOL "Output: RRDTool" On - -MAN1= collectd.1 collectd-nagios.1 collectdmon.1 -MAN5= collectd.conf.5 collectd-email.5 collectd-exec.5 \ - collectd-snmp.5 collectd-unixsock.5 collectd-perl.5 \ - types.db.5 -USE_RC_SUBR= collectd collectdmon - -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.pre.mk> - -.if ( ${OSVERSION} < 601103 ) -BROKEN= Need bind9 import post 6.1 -.endif - -# NOTE: Feel free to submit patches adding support for any of these -# disabled plugins. If a plugin requires external dependencies, -# make it optional through OPTIONS defaulting to Off. Some of -# these are Linux specific, but others will probably run on -# FreeBSD as well, given a bit of careful attention. -CONFIGURE_ARGS= --localstatedir=/var \ - --disable-apple_sensors \ - --disable-ascent \ - --disable-battery \ - --disable-cpufreq \ - --disable-disk \ - --disable-entropy \ - --disable-hddtemp \ - --disable-iptables \ - --disable-ipmi \ - --disable-ipvs \ - --disable-irq \ - --disable-libvirt \ - --disable-multimeter \ - --disable-netlink \ - --disable-nfs \ - --disable-nginx \ - --disable-notify_desktop \ - --disable-notify_email \ - --disable-onewire \ - --disable-perl \ - --disable-postgresql \ - --disable-sensors \ - --disable-serial \ - --disable-tape \ - --disable-thermal \ - --disable-users \ - --disable-vmem \ - --disable-vserver \ - --disable-wireless \ - --without-perl-bindings - -.if defined(WITH_DEBUG) -CONFIGURE_ARGS+=--enable-debug -.endif - -.if defined(WITH_CGI) -RUN_DEPENDS+= ${SITE_PERL}/URI/Escape.pm:${PORTSDIR}/net/p5-URI \ - ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm \ - ${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper -PLIST_SUB+= CGI="" -.else -PLIST_SUB+= CGI="@comment " -.endif - -.if defined(WITH_APACHE) -CONFIGURE_ARGS+=--enable-apache -LIB_DEPENDS+= curl.5:${PORTSDIR}/ftp/curl -PLIST_SUB+= APACHE="" -.else -CONFIGURE_ARGS+=--disable-apache -PLIST_SUB+= APACHE="@comment " -.endif - -.if defined(WITH_APCUPS) -CONFIGURE_ARGS+=--enable-apcups -BUILD_DEPENDS+= ${LOCALBASE}/sbin/apcupsd:${PORTSDIR}/sysutils/apcupsd -PLIST_SUB+= APCUPS="" -.else -CONFIGURE_ARGS+=--disable-apcups -PLIST_SUB+= APCUPS="@comment " -.endif - -.if defined(WITH_NUTUPS) -CONFIGURE_ARGS+=--enable-nut -BUILD_DEPENDS+= ${LOCALBASE}/include/upsclient.h:${PORTSDIR}/sysutils/nut -PLIST_SUB+= NUTUPS="" -.else -CONFIGURE_ARGS+=--disable-nut -PLIST_SUB+= NUTUPS="@comment " -.endif - -.if defined(WITH_INTERFACE) -BUILD_DEPENDS+= pkg-config:${PORTSDIR}/devel/pkg-config -CONFIGURE_ARGS+=--enable-interface -LIB_DEPENDS+= statgrab.8:${PORTSDIR}/devel/libstatgrab -PLIST_SUB+= INTERFACE="" -CONFIGURE_ENV+= LIBS="`pkg-config --libs libstatgrab`" -.else -CONFIGURE_ARGS+=--disable-interface -PLIST_SUB+= INTERFACE="@comment " -.endif - -.if defined(WITH_MBMON) -CONFIGURE_ARGS+=--enable-mbmon -RUN_DEPENDS+= ${LOCALBASE}/sbin/mbmond:${PORTSDIR}/sysutils/mbmon -PLIST_SUB+= MBMON="" -.else -CONFIGURE_ARGS+=--disable-mbmon -PLIST_SUB+= MBMON="@comment " -.endif - -.if defined(WITH_MYSQL) -USE_MYSQL= yes -CONFIGURE_ARGS+=--enable-mysql -PLIST_SUB+= MYSQL="" -.else -CONFIGURE_ARGS+=--disable-mysql -PLIST_SUB+= MYSQL="@comment " -.endif - -.if defined(WITH_PING) -LIB_DEPENDS+= oping:${PORTSDIR}/net/liboping -CONFIGURE_ARGS+=--enable-ping -PLIST_SUB+= PING="" -.else -CONFIGURE_ARGS+=--disable-ping -PLIST_SUB+= PING="@comment " -.endif - -.if defined(WITH_RRDTOOL) -LIB_DEPENDS+= rrd:${PORTSDIR}/databases/rrdtool -CONFIGURE_ARGS+=--enable-rrdtool -PLIST_SUB+= RRD="" -.else -CONFIGURE_ARGS+=--disable-rrdtool -PLIST_SUB+= RRD="@comment " -.endif - -.if defined(WITH_SNMP) -LIB_DEPENDS+= netsnmp.16:${PORTSDIR}/net-mgmt/net-snmp -CONFIGURE_ARGS+=--enable-snmp -PLIST_SUB+= SNMP="" -.else -CONFIGURE_ARGS+=--disable-snmp -PLIST_SUB+= SNMP="@comment " -.endif - -.if defined(WITH_XMMS) -LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms -CONFIGURE_ARGS+=--enable-xmms -CFLAGS+= `xmms-config --cflags` -PLIST_SUB+= XMMS="" -.else -CONFIGURE_ARGS+=--disable-xmms -PLIST_SUB+= XMMS="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} \ - -e 's;@prefix@/var/;/var/;' \ - -e 's;/var/lib/;/var/db/;' \ - ${WRKSRC}/src/collectd.conf.in - @${REINPLACE_CMD} \ - -e 's;$$[(]DESTDIR)$$[(]sysconfdir)/collectd\.conf;&.sample;' \ - ${WRKSRC}/src/Makefile.in - @${REINPLACE_CMD} -e '/$$[(]mkinstalldirs)/d' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} \ - -e 's;/etc/collection\.conf;${WWWDIR}/collection.conf;' \ - ${WRKSRC}/contrib/collection.cgi - @${REINPLACE_CMD} \ - -e 's;/opt/collectd/var/lib;/var/db;' \ - -e 's;/opt/collectd/lib;${PREFIX}/lib;' \ - ${WRKSRC}/contrib/collection.conf - -post-install: - ${MKDIR} /var/db/collectd - if [ ! -f ${PREFIX}/etc/collectd.conf ]; then \ - ${CP} -p ${PREFIX}/etc/collectd.conf.sample \ - ${PREFIX}/etc/collectd.conf ; \ - fi -.if defined(WITH_CGI) - ${MKDIR} ${WWWDIR} - ${INSTALL_SCRIPT} ${WRKSRC}/contrib/collection.cgi ${WWWDIR}/ - ${INSTALL_DATA} ${WRKSRC}/contrib/collection.conf \ - ${WWWDIR}/collection.conf.sample - if [ ! -f ${WWWDIR}/collection.conf ]; then \ - ${CP} -p ${WWWDIR}/collection.conf.sample \ - ${WWWDIR}/collection.conf ; \ - fi -.endif - -.include <bsd.port.post.mk> diff --git a/net-mgmt/collectd5/distinfo b/net-mgmt/collectd5/distinfo deleted file mode 100644 index 24b577a02551..000000000000 --- a/net-mgmt/collectd5/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (collectd-4.5.1.tar.gz) = ab900d15662859b8793abf99eda15c29 -SHA256 (collectd-4.5.1.tar.gz) = 9ab967b7909d9c229cfcd4d1a5503da42f38a1246a53fc5cfaaf1dfde6fae8a1 -SIZE (collectd-4.5.1.tar.gz) = 1279434 diff --git a/net-mgmt/collectd5/files/collectd.in b/net-mgmt/collectd5/files/collectd.in deleted file mode 100644 index 90abfad43a4d..000000000000 --- a/net-mgmt/collectd5/files/collectd.in +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -# PROVIDE: collectd -# REQUIRE: LOGIN -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# collectd_enable (bool): Set to NO by default. -# Set it to YES to enable collectd. -# collectd_flags (string): Set to "" by default. -# Additional flags to collectd, see manual page. -# - -. %%RC_SUBR%% - -name="collectd" -rcvar=${name}_enable - -command=%%PREFIX%%/sbin/${name} - -load_rc_config $name - -: ${collectd_enable="NO"} - -run_rc_command "$1" diff --git a/net-mgmt/collectd5/files/collectdmon.in b/net-mgmt/collectd5/files/collectdmon.in deleted file mode 100644 index 3d934e8223b2..000000000000 --- a/net-mgmt/collectd5/files/collectdmon.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -# PROVIDE: collectdmon -# REQUIRE: LOGIN -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# collectdmon_enable (bool): Set to NO by default. -# Set it to YES to enable collectd. -# collectdmon_flags (string): Set to "-c %%PREFIX%%/sbin/collectd" by default. -# Additional flags to collectdmon, see manual page. -# - -. %%RC_SUBR%% - -name="collectdmon" -rcvar=${name}_enable - -command=%%PREFIX%%/sbin/${name} - -load_rc_config $name - -: ${collectdmon_enable="NO"} -: ${collectdmon_flags="-c %%PREFIX%%/sbin/collectd"} - -run_rc_command "$1" diff --git a/net-mgmt/collectd5/files/patch-src__collectd.h b/net-mgmt/collectd5/files/patch-src__collectd.h deleted file mode 100644 index 8058189613b1..000000000000 --- a/net-mgmt/collectd5/files/patch-src__collectd.h +++ /dev/null @@ -1,20 +0,0 @@ ---- ./src/collectd.h.orig 2007-09-28 17:55:34.000000000 +0300 -+++ ./src/collectd.h 2008-05-06 10:32:08.000000000 +0300 -@@ -183,7 +183,7 @@ - #endif - - #ifndef LOCALSTATEDIR --#define LOCALSTATEDIR PREFIX "/var" -+#define LOCALSTATEDIR "/var" - #endif - - #ifndef PKGLOCALSTATEDIR -@@ -191,7 +191,7 @@ - #endif - - #ifndef PIDFILE --#define PIDFILE PREFIX "/var/run/" PACKAGE_NAME ".pid" -+#define PIDFILE "/var/run/" PACKAGE_NAME ".pid" - #endif - - #ifndef PLUGINDIR diff --git a/net-mgmt/collectd5/files/patch-src__dns.c b/net-mgmt/collectd5/files/patch-src__dns.c deleted file mode 100644 index fb045049b25a..000000000000 --- a/net-mgmt/collectd5/files/patch-src__dns.c +++ /dev/null @@ -1,18 +0,0 @@ ---- src/dns.c.orig 2008-09-05 15:26:02.000000000 +0000 -+++ src/dns.c 2008-09-05 15:25:55.000000000 +0000 -@@ -210,6 +210,15 @@ - pthread_sigmask (SIG_SETMASK, &sigmask, NULL); - } - -+ /* Check for pcap_device, if needed */ -+#ifdef __sparc64__ -+ if (pcap_device == NULL) -+ { -+ ERROR ("dns plugin: Interface required"); -+ return (NULL); -+ } -+#endif -+ - /* Passing `pcap_device == NULL' is okay and the same as passign "any" */ - DEBUG ("Creating PCAP object.."); - pcap_obj = pcap_open_live (pcap_device, diff --git a/net-mgmt/collectd5/pkg-descr b/net-mgmt/collectd5/pkg-descr deleted file mode 100644 index a591a0195caa..000000000000 --- a/net-mgmt/collectd5/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -collectd is a small daemon written in C for performance. It reads various -system & network statistics along with updating output RRD or CSV files. -The daemon is very fast and allows for frequent polling of values, with -support for polling as frequent as every 10 seconds. - -WWW: http://www.collectd.org/ diff --git a/net-mgmt/collectd5/pkg-plist b/net-mgmt/collectd5/pkg-plist deleted file mode 100644 index f1eb8e179469..000000000000 --- a/net-mgmt/collectd5/pkg-plist +++ /dev/null @@ -1,82 +0,0 @@ -@stopdaemon collectd -sbin/collectd -sbin/collectdmon -@unexec if cmp -s %D/etc/collectd.conf.sample %D/etc/collectd.conf; then rm -f %D/etc/collectd.conf; fi -etc/collectd.conf.sample -@exec if [ ! -f %B/collectd.conf ] ; then cp -p %B/%f %B/collectd.conf; fi -%%CGI%%%%WWWDIR%%/collection.cgi -%%CGI%%@unexec if cmp -s %B/collection.conf.sample %B/collection.conf; then rm -f %B/collection.conf; fi -%%CGI%%%%WWWDIR%%/collection.conf.sample -%%CGI%%@exec if [ ! -f %B/collection.conf ] ; then cp -p %B/%f %B/collection.conf; fi -%%CGI%%@dirrmtry %%WWWDIR%% -bin/collectd-nagios -lib/collectd/types.db -%%APACHE%%lib/collectd/apache.la -%%APACHE%%lib/collectd/apache.so -%%APCUPS%%lib/collectd/apcups.la -%%APCUPS%%lib/collectd/apcups.so -lib/collectd/cpu.la -lib/collectd/cpu.so -lib/collectd/csv.la -lib/collectd/csv.so -lib/collectd/df.la -lib/collectd/df.so -lib/collectd/dns.la -lib/collectd/dns.so -lib/collectd/email.la -lib/collectd/email.so -lib/collectd/exec.la -lib/collectd/exec.so -lib/collectd/filecount.so -lib/collectd/filecount.la -%%INTERFACE%%lib/collectd/interface.la -%%INTERFACE%%lib/collectd/interface.so -lib/collectd/load.la -lib/collectd/load.so -lib/collectd/logfile.la -lib/collectd/logfile.so -%%MBMON%%lib/collectd/mbmon.la -%%MBMON%%lib/collectd/mbmon.so -lib/collectd/memcached.so -lib/collectd/memcached.la -lib/collectd/memory.la -lib/collectd/memory.so -%%MYSQL%%lib/collectd/mysql.la -%%MYSQL%%lib/collectd/mysql.so -lib/collectd/network.la -lib/collectd/network.so -%%NUTUPS%%lib/collectd/nut.la -%%NUTUPS%%lib/collectd/nut.so -lib/collectd/ntpd.la -lib/collectd/ntpd.so -%%PING%%lib/collectd/ping.la -%%PING%%lib/collectd/ping.so -lib/collectd/powerdns.so -lib/collectd/powerdns.la -lib/collectd/processes.so -lib/collectd/processes.la -%%RRD%%lib/collectd/rrdtool.la -%%RRD%%lib/collectd/rrdtool.so -%%SNMP%%lib/collectd/snmp.la -%%SNMP%%lib/collectd/snmp.so -lib/collectd/swap.la -lib/collectd/swap.so -lib/collectd/syslog.la -lib/collectd/syslog.so -lib/collectd/tail.so -lib/collectd/tail.la -lib/collectd/tcpconns.so -lib/collectd/tcpconns.la -lib/collectd/teamspeak2.so -lib/collectd/teamspeak2.la -lib/collectd/unixsock.la -lib/collectd/unixsock.so -lib/collectd/uuid.so -lib/collectd/uuid.la -%%XMMS%%lib/collectd/xmms.la -%%XMMS%%lib/collectd/xmms.so -share/collectd/postgresql_default.conf -@dirrm lib/collectd -@dirrm share/collectd -@exec mkdir -p /var/db/collectd -@unexec rmdir /var/db/collectd 2>/dev/null || true diff --git a/net-mgmt/zabbix2-agent/Makefile b/net-mgmt/zabbix2-agent/Makefile deleted file mode 100644 index 9f4fa00d5079..000000000000 --- a/net-mgmt/zabbix2-agent/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# Ports collection makefile for: zabbix-agent -# Date created: Jun 18 2003 -# Whom: Sergey Akifyev <asa@gascom.ru> -# -# $FreeBSD$ -# - -PORTNAME= zabbix -PORTVERSION= 1.6.6 -PORTEPOCH= 2 -CATEGORIES= net-mgmt -MASTER_SITES= SF/${PORTNAME}/ZABBIX%20Latest%20Stable/${PORTVERSION} -PKGNAMESUFFIX= -agent - -MAINTAINER= ports@christianserving.org -COMMENT= Application and network monitoring solution - -USE_GMAKE= yes -USE_RC_SUBR= zabbix_agentd -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-agent --disable-server -MAKE_ARGS= ARCH=freebsd -.ifndef WITHOUT_IPV6 -CONFIGURE_ARGS+=--enable-ipv6 -.endif - -ZABBIX_BIN= agent agentd get sender -ZABBIX_CFG= agent agentd -ZABBIX_BINFILES=${ZABBIX_BIN:S|^|zabbix_|:C|.+|&/&|:S|agentd/|agent/|} -ZABBIX_CFGFILES=${ZABBIX_CFG:S|^|zabbix_|:S|$|.conf|} -PLIST_FILES= ${ZABBIX_BIN:S|^|bin/zabbix_|} \ - ${ZABBIX_CFG:S|^|%%ETCDIR%%/zabbix_|:S|$|.conf.sample|} - -post-patch: - @${FIND} ${WRKSRC}/src/ -type f|${XARGS} \ - ${REINPLACE_CMD} -e 's|/etc/zabbix|${ETCDIR}|;s|/usr/sbin|${LOCALBASE}/sbin|' - -do-install: - @${ECHO_CMD} '@unexec ${RMDIR} %D/${ETCDIR_REL} 2>/dev/null || true' >> ${TMPPLIST} - @${INSTALL_PROGRAM} ${ZABBIX_BINFILES:S,^,${WRKSRC}/src/,} ${PREFIX}/bin/ - @${INSTALL} -d ${ETCDIR}/ - @for i in ${ZABBIX_CFGFILES};do\ - ${INSTALL_DATA} ${WRKSRC}/misc/conf/$$i ${ETCDIR}/$$i.sample;done - @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -.include <bsd.port.mk> diff --git a/net-mgmt/zabbix2-agent/distinfo b/net-mgmt/zabbix2-agent/distinfo deleted file mode 100644 index 086bdcdeffe5..000000000000 --- a/net-mgmt/zabbix2-agent/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (zabbix-1.6.6.tar.gz) = 52779160e71c12d47b97f7336e25c395 -SHA256 (zabbix-1.6.6.tar.gz) = 9eb7bbe99c516c11020d5c95c8f8783fb1dc1123ce9c7e2135db7bfd0ea0aa75 -SIZE (zabbix-1.6.6.tar.gz) = 8255436 diff --git a/net-mgmt/zabbix2-agent/files/patch-configure b/net-mgmt/zabbix2-agent/files/patch-configure deleted file mode 100644 index a1b0bd52a4fe..000000000000 --- a/net-mgmt/zabbix2-agent/files/patch-configure +++ /dev/null @@ -1,12 +0,0 @@ ---- configure.orig 2009-03-28 13:23:22.000000000 -0500 -+++ configure 2009-03-28 13:23:40.000000000 -0500 -@@ -580,6 +580,9 @@ - # Factoring default headers for most tests. - ac_includes_default="\ - #include <stdio.h> -+#include <sys/socket.h> -+#include <sys/param.h> -+#include <netinet/in.h> - #ifdef HAVE_SYS_TYPES_H - # include <sys/types.h> - #endif diff --git a/net-mgmt/zabbix2-agent/files/zabbix_agentd.in b/net-mgmt/zabbix2-agent/files/zabbix_agentd.in deleted file mode 100644 index cc3eeb70286b..000000000000 --- a/net-mgmt/zabbix2-agent/files/zabbix_agentd.in +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# PROVIDE: zabbix_agentd -# REQUIRE: DAEMON -# KEYWORD: shutdown - -. %%RC_SUBR%% - -name="zabbix_agentd" -rcvar=${name}_enable -load_rc_config $name -eval : \${${rcvar}='NO'} - -command="%%PREFIX%%/bin/${name}" -required_files="%%ETCDIR%%/${name}.conf" - -run_rc_command "$1" diff --git a/net-mgmt/zabbix2-agent/pkg-descr b/net-mgmt/zabbix2-agent/pkg-descr deleted file mode 100644 index 52ecef039fcf..000000000000 --- a/net-mgmt/zabbix2-agent/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Zabbix is software for application and network monitoring. -Zabbix supports both polling and trapping techniques to -collect data from monitored hosts. Flexible notification -mechanism allows easy and quckly configure email notifications -for pre-defined events. Zabbix is freely available under the -terms of the GNU General Public License (GPL). - -WWW: http://www.zabbix.com/ diff --git a/net-mgmt/zabbix2-agent/pkg-install b/net-mgmt/zabbix2-agent/pkg-install deleted file mode 100644 index f0b59f76cc4a..000000000000 --- a/net-mgmt/zabbix2-agent/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -# Script was taken from mysql323-server port, and modified -# to suit zabbix needs - -[ -n "${PACKAGE_BUILDING}" ] && exit 0 - -[ "${2}" = "POST-INSTALL" ] && exit 0 - -PATH=/bin:/usr/sbin - -USER=zabbix -GROUP=${USER} -UID=122 -GID=${UID} - -if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." -else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - if pw usermod ${USER} -d /nonexistent - then - echo "Changed home directory of \"${USER}\" to /nonexistent" - else - echo "Changing home directory of \"${USER}\" to /nonexistent failed..." - exit 1 - fi -else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d /nonexistent -s /sbin/nologin -c "Zabbix Sandbox" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi diff --git a/net-mgmt/zabbix2/Makefile b/net-mgmt/zabbix2/Makefile deleted file mode 100644 index 218c79dbdca8..000000000000 --- a/net-mgmt/zabbix2/Makefile +++ /dev/null @@ -1,105 +0,0 @@ -# Ports collection makefile for: zabbix -# Date created: Jun 18 2003 -# Whom: Sergey Akifyev <asa@gascom.ru> -# -# $FreeBSD$ -# - -PORTNAME= zabbix -PORTVERSION= 1.6.6 -PORTEPOCH= 1 -CATEGORIES= net-mgmt -MASTER_SITES= SF/${PORTNAME}/ZABBIX%20Latest%20Stable/${PORTVERSION} - -MAINTAINER= ports@christianserving.org -COMMENT= Application and network monitoring solution - -LIB_DEPENDS= netsnmp.16:${PORTSDIR}/net-mgmt/net-snmp \ - iksemel.4:${PORTSDIR}/textproc/iksemel \ - curl.5:${PORTSDIR}/ftp/curl - -OPTIONS= MYSQL "Use MySQL backend" on \ - PGSQL "Use PostgreSQL backend" off \ - SQLITE "Use SQLite backend" off \ - LDAP "Support for checking LDAP servers" on \ - IPV6 "Support for IPv6" on \ - FPING "Use fping for pinging hosts" on \ - JABBER "Use jabber media type" on - -USE_GMAKE= yes -USE_PHP= gd snmp sockets pcre bcmath -USE_RC_SUBR= zabbix_server.sh -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-agent --enable-server \ - --with-net-snmp=${LOCALBASE}/bin/net-snmp-config \ - --with-curl=${LOCALBASE}/bin/curl-config -MAKE_ARGS= ARCH=freebsd -SUB_FILES= pkg-message - -.include <bsd.port.pre.mk> - -.ifndef WITHOUT_JABBER -USE_JABBER= yes -CONFIGURE_ARGS+=--with-jabber=${LOCALBASE} -.endif - -.ifndef WITHOUT_LDAP -USE_OPENLDAP= yes -CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} -LIB_DEPENDS+= gnutls.40:${PORTSDIR}/security/gnutls \ - sasl2.2:${PORTSDIR}/security/cyrus-sasl2 -.endif - -.ifdef WITH_IPV6 -CONFIGURE_ARGS+=--enable-ipv6 -.endif - -.ifndef WITHOUT_FPING -RUN_DEPENDS+= fping:${PORTSDIR}/net/fping -.endif - -.ifndef WITHOUT_MYSQL -USE_MYSQL= yes -USE_PHP+= mysql -CONFIGURE_ARGS+=--with-mysql=${LOCALBASE}/bin/mysql_config -.elifdef WITH_PGSQL -USE_PGSQL= yes -USE_PHP+= pgsql -CONFIGURE_ARGS+=--with-pgsql=${LOCALBASE}/bin/pg_config -.elifdef WITH_SQLITE -USE_SQLITE= yes -USE_PHP+= sqlite -CONFIGURE_ARGS+=--with-sqlite3=${LOCALBASE} -.else -IGNORE= zabbix needs a database backend -.endif - -post-patch: - @${FIND} ${WRKSRC}/src/ -type f|${XARGS} \ - ${REINPLACE_CMD} -e 's|/etc/zabbix|${ETCDIR}|;s|/usr/sbin|${LOCALBASE}/sbin|' - @${REINPLACE_CMD} -e '/test.*rf/s|-rf|-f|;/LDFLAGS/s|-static||;\ - /LIBS="-lnetsnmp/s|="|="-lcrypto |;s|-lsqlite3|-lsqlite3 ${PTHREAD_LIBS}|'\ - ${WRKSRC}/configure - @cd ${WRKSRC} && ${FIND} . -name '*.orig' -exec ${RM} {} \; - -.ifdef WITHOUT_FPING - @${ECHO} 'DisablePinger=yes' >> ${WRKSRC}/misc/conf/zabbix_server.conf -.endif - -.if ${ARCH} == "amd64" -post-configure: - ${ECHO_CMD} "#define HAVE_VA_COPY 1" >> ${WRKSRC}/include/config.h -.endif - -do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/src/zabbix_server/zabbix_server ${PREFIX}/bin/ - @${INSTALL} -d ${ETCDIR}/ - @${INSTALL_DATA} ${WRKSRC}/misc/conf/zabbix_server.conf\ - ${ETCDIR}/zabbix_server.conf.sample - @cd ${WRKSRC}/frontends/&&${COPYTREE_SHARE} . ${DATADIR}/ - @cd ${WRKSRC}/upgrades/&&${COPYTREE_SHARE} dbpatches ${DATADIR}/ - @cd ${WRKSRC}/create/&&${COPYTREE_SHARE} "data schema" ${DATADIR}/create/ - @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/net-mgmt/zabbix2/distinfo b/net-mgmt/zabbix2/distinfo deleted file mode 100644 index 086bdcdeffe5..000000000000 --- a/net-mgmt/zabbix2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (zabbix-1.6.6.tar.gz) = 52779160e71c12d47b97f7336e25c395 -SHA256 (zabbix-1.6.6.tar.gz) = 9eb7bbe99c516c11020d5c95c8f8783fb1dc1123ce9c7e2135db7bfd0ea0aa75 -SIZE (zabbix-1.6.6.tar.gz) = 8255436 diff --git a/net-mgmt/zabbix2/files/patch-configure b/net-mgmt/zabbix2/files/patch-configure deleted file mode 100644 index a1b0bd52a4fe..000000000000 --- a/net-mgmt/zabbix2/files/patch-configure +++ /dev/null @@ -1,12 +0,0 @@ ---- configure.orig 2009-03-28 13:23:22.000000000 -0500 -+++ configure 2009-03-28 13:23:40.000000000 -0500 -@@ -580,6 +580,9 @@ - # Factoring default headers for most tests. - ac_includes_default="\ - #include <stdio.h> -+#include <sys/socket.h> -+#include <sys/param.h> -+#include <netinet/in.h> - #ifdef HAVE_SYS_TYPES_H - # include <sys/types.h> - #endif diff --git a/net-mgmt/zabbix2/files/pkg-message.in b/net-mgmt/zabbix2/files/pkg-message.in deleted file mode 100644 index 5ba8c2fd4809..000000000000 --- a/net-mgmt/zabbix2/files/pkg-message.in +++ /dev/null @@ -1,7 +0,0 @@ -=============================================================== -You can prepare a database for zabbix this way: -% cd %%DATADIR%%/create -% cat schema/<db>.sql data/data.sql data/images_<db>.sql\ -% | <db_client> -where <db> is your preferred database engine. -=============================================================== diff --git a/net-mgmt/zabbix2/files/zabbix_server.sh.in b/net-mgmt/zabbix2/files/zabbix_server.sh.in deleted file mode 100644 index 4543669f7000..000000000000 --- a/net-mgmt/zabbix2/files/zabbix_server.sh.in +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# PROVIDE: zabbix_server -# REQUIRE: DAEMON -# KEYWORD: shutdown - -. %%RC_SUBR%% - -name="zabbix_server" -rcvar=${name}_enable -load_rc_config $name -eval : \${${rcvar}='NO'} - -command="%%PREFIX%%/bin/${name}" -required_files="%%ETCDIR%%/${name}.conf" - -run_rc_command "$1" diff --git a/net-mgmt/zabbix2/pkg-descr b/net-mgmt/zabbix2/pkg-descr deleted file mode 100644 index 52ecef039fcf..000000000000 --- a/net-mgmt/zabbix2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Zabbix is software for application and network monitoring. -Zabbix supports both polling and trapping techniques to -collect data from monitored hosts. Flexible notification -mechanism allows easy and quckly configure email notifications -for pre-defined events. Zabbix is freely available under the -terms of the GNU General Public License (GPL). - -WWW: http://www.zabbix.com/ diff --git a/net-mgmt/zabbix2/pkg-install b/net-mgmt/zabbix2/pkg-install deleted file mode 100644 index f0b59f76cc4a..000000000000 --- a/net-mgmt/zabbix2/pkg-install +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -# Script was taken from mysql323-server port, and modified -# to suit zabbix needs - -[ -n "${PACKAGE_BUILDING}" ] && exit 0 - -[ "${2}" = "POST-INSTALL" ] && exit 0 - -PATH=/bin:/usr/sbin - -USER=zabbix -GROUP=${USER} -UID=122 -GID=${UID} - -if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." -else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - if pw usermod ${USER} -d /nonexistent - then - echo "Changed home directory of \"${USER}\" to /nonexistent" - else - echo "Changing home directory of \"${USER}\" to /nonexistent failed..." - exit 1 - fi -else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d /nonexistent -s /sbin/nologin -c "Zabbix Sandbox" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi diff --git a/net-mgmt/zabbix2/pkg-plist b/net-mgmt/zabbix2/pkg-plist deleted file mode 100644 index b1fb692c04db..000000000000 --- a/net-mgmt/zabbix2/pkg-plist +++ /dev/null @@ -1,366 +0,0 @@ -bin/zabbix_server -%%ETCDIR%%/zabbix_server.conf.sample -%%DATADIR%%/create/data/data.sql -%%DATADIR%%/create/data/images/Hub.png -%%DATADIR%%/create/data/images/Hub_small.png -%%DATADIR%%/create/data/images/Network.png -%%DATADIR%%/create/data/images/Network_small.png -%%DATADIR%%/create/data/images/Notebook.png -%%DATADIR%%/create/data/images/Notebook_small.png -%%DATADIR%%/create/data/images/Phone.png -%%DATADIR%%/create/data/images/Phone_small.png -%%DATADIR%%/create/data/images/Printer.png -%%DATADIR%%/create/data/images/Printer_small.png -%%DATADIR%%/create/data/images/Router.png -%%DATADIR%%/create/data/images/Router_small.png -%%DATADIR%%/create/data/images/Satellite.png -%%DATADIR%%/create/data/images/Satellite_small.png -%%DATADIR%%/create/data/images/Server.png -%%DATADIR%%/create/data/images/Server_small.png -%%DATADIR%%/create/data/images/UPS.png -%%DATADIR%%/create/data/images/UPS_small.png -%%DATADIR%%/create/data/images/Workstation.png -%%DATADIR%%/create/data/images/Workstation_small.png -%%DATADIR%%/create/data/images_mysql.sql -%%DATADIR%%/create/data/images_oracle.sql -%%DATADIR%%/create/data/images_pgsql.sql -%%DATADIR%%/create/data/images_sqlite3.sql -%%DATADIR%%/create/schema/mysql.sql -%%DATADIR%%/create/schema/oracle.sql -%%DATADIR%%/create/schema/postgresql.sql -%%DATADIR%%/create/schema/sqlite.sql -%%DATADIR%%/dbpatches/1.6/mysql/patch.sql -%%DATADIR%%/dbpatches/1.6/oracle/patch.sql -%%DATADIR%%/dbpatches/1.6/postgresql/patch.sql -%%DATADIR%%/php/acknow.php -%%DATADIR%%/php/actionconf.php -%%DATADIR%%/php/audio/trigger_off.wav -%%DATADIR%%/php/audio/trigger_on.wav -%%DATADIR%%/php/audio/trigger_on_average.wav -%%DATADIR%%/php/audio/trigger_on_disaster.wav -%%DATADIR%%/php/audio/trigger_on_high.wav -%%DATADIR%%/php/audio/trigger_on_warning.wav -%%DATADIR%%/php/audit.php -%%DATADIR%%/php/authentication.php -%%DATADIR%%/php/chart.php -%%DATADIR%%/php/chart2.php -%%DATADIR%%/php/chart3.php -%%DATADIR%%/php/chart4.php -%%DATADIR%%/php/chart5.php -%%DATADIR%%/php/chart6.php -%%DATADIR%%/php/chart7.php -%%DATADIR%%/php/chart_sla.php -%%DATADIR%%/php/charts.php -%%DATADIR%%/php/conf/COPYING -%%DATADIR%%/php/conf/maintenance.inc.php -%%DATADIR%%/php/config.php -%%DATADIR%%/php/css.css -%%DATADIR%%/php/dashboard.php -%%DATADIR%%/php/discovery.php -%%DATADIR%%/php/discoveryconf.php -%%DATADIR%%/php/events.php -%%DATADIR%%/php/exp_imp.php -%%DATADIR%%/php/graphs.php -%%DATADIR%%/php/history.php -%%DATADIR%%/php/hostprofiles.php -%%DATADIR%%/php/hosts.php -%%DATADIR%%/php/httpconf.php -%%DATADIR%%/php/httpdetails.php -%%DATADIR%%/php/httpmon.php -%%DATADIR%%/php/image.php -%%DATADIR%%/php/images/flash/zbxclock.swf -%%DATADIR%%/php/images/general/bar/arrow_down.gif -%%DATADIR%%/php/images/general/bar/arrow_l.gif -%%DATADIR%%/php/images/general/bar/arrow_r.gif -%%DATADIR%%/php/images/general/bar/arrow_sm.gif -%%DATADIR%%/php/images/general/bar/arrow_up.gif -%%DATADIR%%/php/images/general/bar/bar_bg.gif -%%DATADIR%%/php/images/general/bar/bar_left.gif -%%DATADIR%%/php/images/general/bar/bar_middle.gif -%%DATADIR%%/php/images/general/bar/bar_right.gif -%%DATADIR%%/php/images/general/bar/bg.gif -%%DATADIR%%/php/images/general/bar/cal.gif -%%DATADIR%%/php/images/general/bar/left.gif -%%DATADIR%%/php/images/general/bar/right.gif -%%DATADIR%%/php/images/general/bttn/arrowdown.png -%%DATADIR%%/php/images/general/bttn/arrowdown_bb.png -%%DATADIR%%/php/images/general/bttn/arrowup.png -%%DATADIR%%/php/images/general/bttn/arrowup_bb.png -%%DATADIR%%/php/images/general/bttn/down.png -%%DATADIR%%/php/images/general/bttn/down_bb.png -%%DATADIR%%/php/images/general/bttn/fullscreen.png -%%DATADIR%%/php/images/general/bttn/fullscreen_bb.png -%%DATADIR%%/php/images/general/bttn/help.png -%%DATADIR%%/php/images/general/bttn/help_bb.png -%%DATADIR%%/php/images/general/bttn/menu.png -%%DATADIR%%/php/images/general/bttn/menu_bb.png -%%DATADIR%%/php/images/general/bttn/minus.png -%%DATADIR%%/php/images/general/bttn/minus_bb.png -%%DATADIR%%/php/images/general/bttn/mute.png -%%DATADIR%%/php/images/general/bttn/mute_bb.png -%%DATADIR%%/php/images/general/bttn/plus.png -%%DATADIR%%/php/images/general/bttn/plus_bb.png -%%DATADIR%%/php/images/general/bttn/reset.png -%%DATADIR%%/php/images/general/bttn/reset_bb.png -%%DATADIR%%/php/images/general/bttn/sound.png -%%DATADIR%%/php/images/general/bttn/sound_bb.png -%%DATADIR%%/php/images/general/bttn/up.png -%%DATADIR%%/php/images/general/bttn/up_bb.png -%%DATADIR%%/php/images/general/chart.png -%%DATADIR%%/php/images/general/closed.gif -%%DATADIR%%/php/images/general/down_icon.png -%%DATADIR%%/php/images/general/error_small.gif -%%DATADIR%%/php/images/general/help.gif -%%DATADIR%%/php/images/general/inst_completed.gif -%%DATADIR%%/php/images/general/inst_current.gif -%%DATADIR%%/php/images/general/inst_step.gif -%%DATADIR%%/php/images/general/opened.gif -%%DATADIR%%/php/images/general/sort_downw.gif -%%DATADIR%%/php/images/general/sort_upw.gif -%%DATADIR%%/php/images/general/sortdown.gif -%%DATADIR%%/php/images/general/sortdown_off.gif -%%DATADIR%%/php/images/general/sortup.gif -%%DATADIR%%/php/images/general/sortup_off.gif -%%DATADIR%%/php/images/general/tick.png -%%DATADIR%%/php/images/general/tree/minus.gif -%%DATADIR%%/php/images/general/tree/plus.gif -%%DATADIR%%/php/images/general/tree/point.gif -%%DATADIR%%/php/images/general/tree/pointc.gif -%%DATADIR%%/php/images/general/tree/pointl.gif -%%DATADIR%%/php/images/general/tree/zero.gif -%%DATADIR%%/php/images/general/trigg_dep.gif -%%DATADIR%%/php/images/general/trigg_dep.png -%%DATADIR%%/php/images/general/up_icon.png -%%DATADIR%%/php/images/general/warning16r.gif -%%DATADIR%%/php/images/general/warning_small.gif -%%DATADIR%%/php/images/general/zabbix.ico -%%DATADIR%%/php/images/general/zabbix.png -%%DATADIR%%/php/images/general/zabbix_bb.ico -%%DATADIR%%/php/images/general/zabbix_bb.png -%%DATADIR%%/php/images/general/zabbix_ob.ico -%%DATADIR%%/php/images/gradients/blink1.gif -%%DATADIR%%/php/images/gradients/blink2.gif -%%DATADIR%%/php/images/gradients/button.gif -%%DATADIR%%/php/images/gradients/gradient.png -%%DATADIR%%/php/images/gradients/menu_not_active.gif -%%DATADIR%%/php/images/gradients/menu_not_active_bb.gif -%%DATADIR%%/php/images/gradients/sla_red.png -%%DATADIR%%/php/images/gradients/sla_green.png -%%DATADIR%%/php/images/gradients/table_head.gif -%%DATADIR%%/php/images/gradients/table_head2.gif -%%DATADIR%%/php/images/gradients/table_head2_bb.gif -%%DATADIR%%/php/images/gradients/table_head_bb.gif -%%DATADIR%%/php/images/sysmaps/Hub.png -%%DATADIR%%/php/images/sysmaps/Hub_small.png -%%DATADIR%%/php/images/sysmaps/Network.png -%%DATADIR%%/php/images/sysmaps/Network_small.png -%%DATADIR%%/php/images/sysmaps/Notebook.png -%%DATADIR%%/php/images/sysmaps/Notebook_small.png -%%DATADIR%%/php/images/sysmaps/Phone.png -%%DATADIR%%/php/images/sysmaps/Phone_small.png -%%DATADIR%%/php/images/sysmaps/Printer.png -%%DATADIR%%/php/images/sysmaps/Printer_small.png -%%DATADIR%%/php/images/sysmaps/README -%%DATADIR%%/php/images/sysmaps/Router.png -%%DATADIR%%/php/images/sysmaps/Router_small.png -%%DATADIR%%/php/images/sysmaps/Satellite.png -%%DATADIR%%/php/images/sysmaps/Satellite_small.png -%%DATADIR%%/php/images/sysmaps/Server.png -%%DATADIR%%/php/images/sysmaps/Server_small.png -%%DATADIR%%/php/images/sysmaps/UPS.png -%%DATADIR%%/php/images/sysmaps/UPS_small.png -%%DATADIR%%/php/images/sysmaps/Workstation.png -%%DATADIR%%/php/images/sysmaps/Workstation_small.png -%%DATADIR%%/php/images/sysmaps/old/Hub.png -%%DATADIR%%/php/images/sysmaps/old/Notebook.png -%%DATADIR%%/php/images/sysmaps/old/Printer.png -%%DATADIR%%/php/images/sysmaps/old/Router.png -%%DATADIR%%/php/images/sysmaps/old/Server.png -%%DATADIR%%/php/images/sysmaps/old/Workstation.png -%%DATADIR%%/php/include/.htaccess -%%DATADIR%%/php/include/acknow.inc.php -%%DATADIR%%/php/include/actions.inc.php -%%DATADIR%%/php/include/audit.inc.php -%%DATADIR%%/php/include/blocks.inc.php -%%DATADIR%%/php/include/classes/.htaccess -%%DATADIR%%/php/include/classes/cbutton.inc.php -%%DATADIR%%/php/include/classes/ccheckbox.inc.php -%%DATADIR%%/php/include/classes/ccolor.inc.php -%%DATADIR%%/php/include/classes/ccombobox.inc.php -%%DATADIR%%/php/include/classes/cfile.inc.php -%%DATADIR%%/php/include/classes/cflash.inc.php -%%DATADIR%%/php/include/classes/cflashclock.mod.php -%%DATADIR%%/php/include/classes/cform.inc.php -%%DATADIR%%/php/include/classes/cformtable.inc.php -%%DATADIR%%/php/include/classes/chart.inc.php -%%DATADIR%%/php/include/classes/chelp.inc.php -%%DATADIR%%/php/include/classes/chostsinfo.mod.php -%%DATADIR%%/php/include/classes/ciframe.inc.php -%%DATADIR%%/php/include/classes/cimg.inc.php -%%DATADIR%%/php/include/classes/cldap.inc.php -%%DATADIR%%/php/include/classes/clink.inc.php -%%DATADIR%%/php/include/classes/clist.inc.php -%%DATADIR%%/php/include/classes/cmap.inc.php -%%DATADIR%%/php/include/classes/cpumenu.inc.php -%%DATADIR%%/php/include/classes/cscript.inc.php -%%DATADIR%%/php/include/classes/cserverinfo.mod.php -%%DATADIR%%/php/include/classes/cspan.inc.php -%%DATADIR%%/php/include/classes/ctable.inc.php -%%DATADIR%%/php/include/classes/ctableinfo.inc.php -%%DATADIR%%/php/include/classes/ctag.inc.php -%%DATADIR%%/php/include/classes/ctextarea.inc.php -%%DATADIR%%/php/include/classes/ctextbox.inc.php -%%DATADIR%%/php/include/classes/ctree.inc.php -%%DATADIR%%/php/include/classes/ctriggerinfo.mod.php -%%DATADIR%%/php/include/classes/curl.inc.php -%%DATADIR%%/php/include/classes/cvar.inc.php -%%DATADIR%%/php/include/classes/graph.inc.php -%%DATADIR%%/php/include/classes/pie.inc.php -%%DATADIR%%/php/include/config.inc.php -%%DATADIR%%/php/include/copt.lib.php -%%DATADIR%%/php/include/db.inc.php -%%DATADIR%%/php/include/defines.inc.php -%%DATADIR%%/php/include/discovery.inc.php -%%DATADIR%%/php/include/events.inc.php -%%DATADIR%%/php/include/export.inc.php -%%DATADIR%%/php/include/forms.inc.php -%%DATADIR%%/php/include/func.inc.php -%%DATADIR%%/php/include/graphs.inc.php -%%DATADIR%%/php/include/hosts.inc.php -%%DATADIR%%/php/include/html.inc.php -%%DATADIR%%/php/include/httptest.inc.php -%%DATADIR%%/php/include/images.inc.php -%%DATADIR%%/php/include/import.inc.php -%%DATADIR%%/php/include/items.inc.php -%%DATADIR%%/php/include/js.inc.php -%%DATADIR%%/php/include/locales.inc.php -%%DATADIR%%/php/include/locales/cn_zh.inc.php -%%DATADIR%%/php/include/locales/de_de.inc.php -%%DATADIR%%/php/include/locales/en_gb.inc.php -%%DATADIR%%/php/include/locales/fr_fr.inc.php -%%DATADIR%%/php/include/locales/hu_hu.inc.php -%%DATADIR%%/php/include/locales/it_it.inc.php -%%DATADIR%%/php/include/locales/ja_jp.inc.php -%%DATADIR%%/php/include/locales/ko_kr.inc.php -%%DATADIR%%/php/include/locales/lv_lv.inc.php -%%DATADIR%%/php/include/locales/nl_nl.inc.php -%%DATADIR%%/php/include/locales/pl_pl.inc.php -%%DATADIR%%/php/include/locales/pt_br.inc.php -%%DATADIR%%/php/include/locales/ru_ru.inc.php -%%DATADIR%%/php/include/locales/sp_sp.inc.php -%%DATADIR%%/php/include/locales/sv_se.inc.php -%%DATADIR%%/php/include/maps.inc.php -%%DATADIR%%/php/include/media.inc.php -%%DATADIR%%/php/include/nodes.inc.php -%%DATADIR%%/php/include/page_footer.php -%%DATADIR%%/php/include/page_header.php -%%DATADIR%%/php/include/perm.inc.php -%%DATADIR%%/php/include/profiles.inc.php -%%DATADIR%%/php/include/reports.inc.php -%%DATADIR%%/php/include/screens.inc.php -%%DATADIR%%/php/include/scripts.inc.php -%%DATADIR%%/php/include/services.inc.php -%%DATADIR%%/php/include/setup.inc.php -%%DATADIR%%/php/include/triggers.inc.php -%%DATADIR%%/php/include/users.inc.php -%%DATADIR%%/php/include/validate.inc.php -%%DATADIR%%/php/index.php -%%DATADIR%%/php/instal.php -%%DATADIR%%/php/items.php -%%DATADIR%%/php/js/ajax_req.js -%%DATADIR%%/php/js/calendar.js -%%DATADIR%%/php/js/common.js -%%DATADIR%%/php/js/gmenu.js -%%DATADIR%%/php/js/gpc.js -%%DATADIR%%/php/js/graphs.js -%%DATADIR%%/php/js/menu.js -%%DATADIR%%/php/js/menu_scripts.js -%%DATADIR%%/php/js/prototype.js -%%DATADIR%%/php/js/sbinit.js -%%DATADIR%%/php/js/sbox.js -%%DATADIR%%/php/js/scrollbar.js -%%DATADIR%%/php/js/services.js -%%DATADIR%%/php/js/showhint.js -%%DATADIR%%/php/js/tree.js -%%DATADIR%%/php/js/updater.js -%%DATADIR%%/php/latest.php -%%DATADIR%%/php/locales.php -%%DATADIR%%/php/map.php -%%DATADIR%%/php/maps.php -%%DATADIR%%/php/media_types.php -%%DATADIR%%/php/nodes.php -%%DATADIR%%/php/overview.php -%%DATADIR%%/php/popup.php -%%DATADIR%%/php/popup_gitem.php -%%DATADIR%%/php/popup_httpstep.php -%%DATADIR%%/php/popup_link_tr.php -%%DATADIR%%/php/popup_media.php -%%DATADIR%%/php/popup_right.php -%%DATADIR%%/php/popup_trexpr.php -%%DATADIR%%/php/popup_users.php -%%DATADIR%%/php/popup_usrgrp.php -%%DATADIR%%/php/profile.php -%%DATADIR%%/php/queue.php -%%DATADIR%%/php/report1.php -%%DATADIR%%/php/report2.php -%%DATADIR%%/php/report3.php -%%DATADIR%%/php/report4.php -%%DATADIR%%/php/report5.php -%%DATADIR%%/php/screenconf.php -%%DATADIR%%/php/screenedit.php -%%DATADIR%%/php/screens.php -%%DATADIR%%/php/scripts.php -%%DATADIR%%/php/scripts_exec.php -%%DATADIR%%/php/services.php -%%DATADIR%%/php/services_form.php -%%DATADIR%%/php/setup.php -%%DATADIR%%/php/srv_status.php -%%DATADIR%%/php/styles/blocks.css -%%DATADIR%%/php/styles/calendar.css -%%DATADIR%%/php/styles/css_bb.css -%%DATADIR%%/php/styles/css_ob.css -%%DATADIR%%/php/styles/default.css -%%DATADIR%%/php/styles/div.css -%%DATADIR%%/php/styles/form.css -%%DATADIR%%/php/styles/link.css -%%DATADIR%%/php/styles/p.css -%%DATADIR%%/php/styles/popupmenu.css -%%DATADIR%%/php/styles/table.css -%%DATADIR%%/php/styles/ul.css -%%DATADIR%%/php/sysmap.php -%%DATADIR%%/php/sysmaps.php -%%DATADIR%%/php/tr_comments.php -%%DATADIR%%/php/tr_events.php -%%DATADIR%%/php/tr_status.php -%%DATADIR%%/php/triggers.php -%%DATADIR%%/php/users.php -%%DATADIR%%/php/vtext.php -%%DATADIR%%/php/warning.php -@dirrm %%DATADIR%%/php/styles -@dirrm %%DATADIR%%/php/js -@dirrm %%DATADIR%%/php/include/locales -@dirrm %%DATADIR%%/php/include/classes -@dirrm %%DATADIR%%/php/include -@dirrm %%DATADIR%%/php/images/sysmaps/old -@dirrm %%DATADIR%%/php/images/sysmaps -@dirrm %%DATADIR%%/php/images/gradients -@dirrm %%DATADIR%%/php/images/general/tree -@dirrm %%DATADIR%%/php/images/general/bttn -@dirrm %%DATADIR%%/php/images/general/bar -@dirrm %%DATADIR%%/php/images/general -@dirrm %%DATADIR%%/php/images/flash -@dirrm %%DATADIR%%/php/images -@dirrm %%DATADIR%%/php/conf -@dirrm %%DATADIR%%/php/audio -@dirrm %%DATADIR%%/php -@dirrm %%DATADIR%%/dbpatches/1.6/postgresql -@dirrm %%DATADIR%%/dbpatches/1.6/oracle -@dirrm %%DATADIR%%/dbpatches/1.6/mysql -@dirrm %%DATADIR%%/dbpatches/1.6 -@dirrm %%DATADIR%%/dbpatches -@dirrm %%DATADIR%%/create/schema -@dirrm %%DATADIR%%/create/data/images -@dirrm %%DATADIR%%/create/data -@dirrm %%DATADIR%%/create -@dirrm %%DATADIR%% -@dirrm %%ETCDIR%% |