Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Nov 2014 11:06:52 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r372355 - in head/net-mgmt: . zabbix24-agent zabbix24-frontend zabbix24-proxy zabbix24-server zabbix24-server/files
Message-ID:  <201411091106.sA9B6ql5008609@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sun Nov  9 11:06:52 2014
New Revision: 372355
URL: https://svnweb.freebsd.org/changeset/ports/372355
QAT: https://qat.redports.org/buildarchive/r372355/

Log:
  Add four zabbix24 ports to net-mgmt (similar to zabbix22* ports)
  
  This add Zabbix 2.4.1 server, agent, frontend, and proxy
  
  PR:		194104
  Submitted by:	pakhom706 (gmail)

Added:
  head/net-mgmt/zabbix24-agent/
  head/net-mgmt/zabbix24-agent/Makefile   (contents, props changed)
  head/net-mgmt/zabbix24-frontend/
  head/net-mgmt/zabbix24-frontend/Makefile   (contents, props changed)
  head/net-mgmt/zabbix24-proxy/
  head/net-mgmt/zabbix24-proxy/Makefile   (contents, props changed)
  head/net-mgmt/zabbix24-server/
  head/net-mgmt/zabbix24-server/Makefile   (contents, props changed)
  head/net-mgmt/zabbix24-server/distinfo   (contents, props changed)
  head/net-mgmt/zabbix24-server/files/
  head/net-mgmt/zabbix24-server/files/pkg-message.in   (contents, props changed)
  head/net-mgmt/zabbix24-server/files/zabbix_agentd.in   (contents, props changed)
  head/net-mgmt/zabbix24-server/files/zabbix_proxy.in   (contents, props changed)
  head/net-mgmt/zabbix24-server/files/zabbix_server.in   (contents, props changed)
  head/net-mgmt/zabbix24-server/pkg-descr   (contents, props changed)
  head/net-mgmt/zabbix24-server/pkg-plist   (contents, props changed)
  head/net-mgmt/zabbix24-server/pkg-plist.agent   (contents, props changed)
  head/net-mgmt/zabbix24-server/pkg-plist.frontend   (contents, props changed)
Modified:
  head/net-mgmt/Makefile

Modified: head/net-mgmt/Makefile
==============================================================================
--- head/net-mgmt/Makefile	Sun Nov  9 10:41:52 2014	(r372354)
+++ head/net-mgmt/Makefile	Sun Nov  9 11:06:52 2014	(r372355)
@@ -326,5 +326,9 @@
     SUBDIR += zabbix22-frontend
     SUBDIR += zabbix22-proxy
     SUBDIR += zabbix22-server
+    SUBDIR += zabbix24-agent
+    SUBDIR += zabbix24-frontend
+    SUBDIR += zabbix24-proxy
+    SUBDIR += zabbix24-server
 
 .include <bsd.port.subdir.mk>

Added: head/net-mgmt/zabbix24-agent/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-agent/Makefile	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,15 @@
+# Created by: Pakhom Golynga <pakhom706@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	zabbix24
+CATEGORIES=	net-mgmt
+PKGNAMESUFFIX=	-agent
+
+MASTERDIR=	${.CURDIR}/../zabbix24-server
+PLIST=		${PKGDIR}/pkg-plist.agent
+
+OPTIONSFILE=		${PORT_DBDIR}/${PORTNAME}${PKGNAMESUFFIX}/options
+OPTIONS_DEFINE=		IPV6
+OPTIONS_DEFAULT=	IPV6
+
+.include "${MASTERDIR}/Makefile"

Added: head/net-mgmt/zabbix24-frontend/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-frontend/Makefile	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,51 @@
+# Created by: Pakhom Golynga <pakhom706@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	zabbix24
+CATEGORIES=	net-mgmt
+PKGNAMESUFFIX=	-frontend
+
+MASTERDIR=	${.CURDIR}/../zabbix24-server
+
+NO_BUILD=	yes
+PATCHDIR=
+PLIST=		${PKGDIR}/pkg-plist.frontend
+
+USE_PHP=	bcmath ctype gd pcre snmp sockets mbstring session dom xml \
+		xmlreader xmlwriter simplexml gettext ldap
+WANT_PHP_WEB=	yes
+
+OPTIONSFILE=		${PORT_DBDIR}/${PORTNAME}${PKGNAMESUFFIX}/options
+OPTIONS_DEFINE=		MYSQL MYSQLI PGSQL SQLITE ORACLE
+OPTIONS_DEFAULT=	MYSQL MYSQLI
+MYSQLI_DESC=		MySQLI backend
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MMYSQL}
+USE_PHP+=	mysql
+.endif
+
+.if ${PORT_OPTIONS:MMYSQLI}
+USE_PHP+=	mysqli
+.endif
+
+.if ${PORT_OPTIONS:MPGSQL}
+USE_PHP+=	pgsql
+.endif
+
+.if ${PORT_OPTIONS:MSQLITE}
+USE_PHP+=	sqlite3
+.endif
+
+.if ${PORT_OPTIONS:MORACLE}
+ZABBIX_REQUIRE=
+CONFIGURE_ARGS+=        --with-oracle
+.endif
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${WWWDIR}
+	(cd ${WRKSRC}/frontends/php && \
+		${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
+
+.include "${MASTERDIR}/Makefile"

Added: head/net-mgmt/zabbix24-proxy/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-proxy/Makefile	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,10 @@
+# Created by: Pakhom Golynga <pakhom706@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	zabbix24
+CATEGORIES=	net-mgmt
+PKGNAMESUFFIX=	-proxy
+
+MASTERDIR=	${.CURDIR}/../zabbix24-server
+
+.include "${MASTERDIR}/Makefile"

Added: head/net-mgmt/zabbix24-server/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/Makefile	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,177 @@
+# Created by: Pakhom Golynga <pakhom706@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	zabbix24
+PORTVERSION=	2.4.2
+PORTREVISION?=	0
+CATEGORIES=	net-mgmt
+MASTER_SITES=	SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION}
+PKGNAMESUFFIX?=	-server
+DISTNAME=	zabbix-${PORTVERSION}
+
+MAINTAINER=	pakhom706@gmail.com
+COMMENT=	Enterprise-class open source distributed monitoring (${PKGNAMESUFFIX:S/^-//})
+
+LICENSE=	GPLv2
+
+CONFLICTS=	${PKGBASE}-1.[0-8]*
+
+IGNORE_WITH_PHP=	52
+IGNORE_WITH_MYSQL=	41
+
+.if ${PKGNAMESUFFIX} != "-agent"
+CONFLICTS+=	${PORTNAME}-1.[0-8]*
+.endif
+
+ZABBIX_BUILD=	${PKGNAMESUFFIX:S/^-//}
+
+.if ${ZABBIX_BUILD} != "frontend" # frontend only needs the version/distribution settings
+.if ${ZABBIX_BUILD} != "agent"
+USE_RC_SUBR=	zabbix_${ZABBIX_BUILD}
+.else
+USE_RC_SUBR=	zabbix_${ZABBIX_BUILD}d
+.endif
+
+USES=		pkgconfig iconv
+
+USERS=		zabbix
+GROUPS=		zabbix
+
+.if ${ZABBIX_BUILD} != "proxy"
+PLIST_SUB=	PROXY="@comment "
+.else
+PLIST_SUB=	PROXY=""
+.endif
+
+.if ${ZABBIX_BUILD} == "server"
+PLIST_SUB+=	SERVER=""
+.else
+PLIST_SUB+=	SERVER="@comment "
+.endif
+
+PLIST_SUB+=	ZABBIX_BUILD=${ZABBIX_BUILD} PORTVERSION=${PORTVERSION}
+SUB_LIST=	ZABBIX_BUILD=${ZABBIX_BUILD} ZABBIX_REQUIRE=${ZABBIX_REQUIRE}
+
+MAKE_ARGS+=	ARCH=freebsd
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS+=	--enable-${ZABBIX_BUILD} \
+			--sysconfdir=${ETCDIR} \
+			--datadir=${ETCDIR} \
+			--with-iconv=${ICONV_PREFIX}
+
+.if ${ZABBIX_BUILD} != "agent"
+LIB_DEPENDS=	libnetsnmp.so:${PORTSDIR}/net-mgmt/net-snmp \
+		libexecinfo.so:${PORTSDIR}/devel/libexecinfo
+
+SUB_FILES=	pkg-message
+
+CONFIGURE_ARGS+=	--with-net-snmp
+
+OPTIONSFILE=		${PORT_DBDIR}/${PORTNAME}${PKGNAMESUFFIX}/options
+OPTIONS_DEFINE=		IPV6 FPING JABBER CURL LDAP IPMI SSH NMAP JAVAGW \
+			LIBXML2
+OPTIONS_DEFAULT=	IPV6 FPING JABBER CURL UNIXODBC MYSQL
+OPTIONS_SUB=		yes
+
+CURL_DESC=		Support for web monitoring
+FPING_DESC=		Build/install fping for ping checks
+IPMI_DESC=		Support for IPMI checks
+JABBER_DESC=		Support for Jabber media type
+LDAP_DESC=		Support for LDAP server checks
+NMAP_DESC=		Build/install nmap for o/s detection
+SSH_DESC=		Support for SSH-based checks
+ODBC_DESC=		Support for database checks via ODBC
+JAVAGW_DESC=		Support for Java gateway
+LIBXML2_DESC=		Support for libxml2 (required by monitoring VMware)
+
+OPTIONS_SINGLE=		DB ODBC
+OPTIONS_SINGLE_DB=	MYSQL PGSQL SQLITE ORACLE
+OPTIONS_SINGLE_ODBC=	IODBC UNIXODBC
+
+MYSQL_CONFIGURE_WITH=	mysql
+MYSQL_USE=		MYSQL=yes
+
+PGSQL_CONFIGURE_WITH=	postgresql
+PGSQL_USES=		pgsql
+
+SQLITE_CONFIGURE_WITH=	sqlite3
+SQLITE_USE=		SQLITE=3
+
+ORACLE_CONFIGURE_WITH=	oracle
+
+CURL_CONFIGURE_WITH=	libcurl
+CURL_LIB_DEPENDS=	libcurl.so:${PORTSDIR}/ftp/curl
+
+LDAP_CONFIGURE_WITH=	ldap
+LDAP_USE=		OPENLDAP=yes
+
+IPMI_CONFIGURE_WITH=	openipmi
+IPMI_LIB_DEPENDS=	libOpenIPMI.so:${PORTSDIR}/sysutils/openipmi
+
+JABBER_CONFIGURE_WITH=	jabber
+JABBER_LIB_DEPENDS=	libiksemel.so:${PORTSDIR}/textproc/iksemel
+
+FPING_RUN_DEPENDS=	fping:${PORTSDIR}/net/fping
+
+SSH_CONFIGURE_WITH=	ssh2
+SSH_LIB_DEPENDS=	libssh2.so:${PORTSDIR}/security/libssh2
+
+IODBC_CONFIGURE_WITH=	iodbc
+IODBC_LIB_DEPENDS=	libiodbc.so:${PORTSDIR}/databases/libiodbc
+
+UNIXODBC_CONFIGURE_WITH=unixodbc
+UNIXODBC_LIB_DEPENDS=	libodbc.so:${PORTSDIR}/databases/unixODBC
+.endif # if ${ZABBIX_BUILD} != "agent"
+
+IPV6_CONFIGURE_ENABLE=	ipv6
+
+NMAP_RUN_DEPENDS=	nmap:${PORTSDIR}/security/nmap \
+			sudo:${PORTSDIR}/security/sudo
+
+JAVAGW_CONFIGURE_ENABLE=java
+JAVAGW_USE=		JAVA=yes
+
+LIBXML2_CONFIGURE_WITH=	libxml2
+LIBXML2_LIB_DEPENDS=	libxml2.so:${PORTSDIR}/textproc/libxml2
+
+.include <bsd.port.options.mk>
+
+post-patch:
+	@${GREP} -rl "/etc/zabbix" ${WRKSRC} \
+	  | ${XARGS} ${REINPLACE_CMD} -e 's#/etc/zabbix#${ETCDIR}#g'
+	@${REINPLACE_CMD} -e 's#/usr/sbin/fping#${LOCALBASE}/sbin/fping#g' \
+		${WRKSRC}/conf/zabbix_*.conf
+
+.if ${ZABBIX_BUILD} != "agent"
+.  for d in mysql oracle postgresql sqlite3
+	@${REINPLACE_CMD} \
+		-e 's|/bin/ping|/sbin/ping|g' \
+		-e 's|/usr/bin/traceroute|/usr/sbin/traceroute|g' \
+		-e 's|sudo /usr/bin/nmap|sudo ${LOCALBASE}/bin/nmap|g' \
+		${WRKSRC}/database/${d}/data.sql
+.  endfor
+.endif
+	@${REINPLACE_CMD} \
+		-Ee 's|(@sysconfdir@/(\$$\([A-Z]*_CONFIG\)))" ([|][|] cp "../../conf/\$$\([A-Z]*_CONFIG\)" "\$$\(DESTDIR\)@sysconfdir@)"|\1.sample" \3/\2.sample"|;' \
+		${WRKSRC}/src/zabbix_${ZABBIX_BUILD}/Makefile.in
+	@${FIND} ${WRKSRC} -type f \( -name '*.bak' -or -name '*.orig' \) \
+		-exec ${RM} -f {} +
+
+post-install:
+
+.if ${PORT_OPTIONS:MJAVAGW}
+	${MV} ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh \
+		${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh.sample
+.endif
+
+.if ${ZABBIX_BUILD} != "agent"
+	${MKDIR} ${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/database
+	(cd ${WRKSRC}/upgrades/ && ${COPYTREE_SHARE} dbpatches \
+		${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/upgrades/)
+	(cd ${WRKSRC}/database/ && \
+		${COPYTREE_SHARE} "ibm_db2 mysql oracle postgresql sqlite3" \
+		${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/database/)
+.endif
+.endif
+
+.include <bsd.port.mk>

Added: head/net-mgmt/zabbix24-server/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/distinfo	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,2 @@
+SHA256 (zabbix-2.4.2.tar.gz) = dad3ac64176f267b319d77bb0ec2bea0acdce945425f7ae39011cba019a75003
+SIZE (zabbix-2.4.2.tar.gz) = 14803538

Added: head/net-mgmt/zabbix24-server/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/files/pkg-message.in	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,42 @@
+======================================================================
+For Zabbix server and proxy daemons, as well as Zabbix frontend, a database is required. It is not needed to run Zabbix agent.
+% cd %%DATADIR%%/%%ZABBIX_BUILD%%/database
+
+PostgreSQL:
+shell> psql -U <username>
+psql> create database zabbix;
+psql> \q
+shell> cd database/postgresql
+shell> psql -U <username> zabbix < schema.sql
+shell> psql -U <username> zabbix < images.sql
+shell> psql -U <username> zabbix < data.sql
+
+MySQL:
+shell> mysql -u<username> -p<password>
+mysql> create database zabbix character set utf8;
+mysql> quit;
+shell> mysql -u<username> -p<password> zabbix < database/mysql/schema.sql
+shell> mysql -u<username> -p<password> zabbix < database/mysql/images.sql
+shell> mysql -u<username> -p<password> zabbix < database/mysql/data.sql
+
+SQLite:
+shell> cd database/sqlite3
+shell> sqlite3 /var/lib/sqlite/zabbix.db < schema.sql
+shell> sqlite3 /var/lib/sqlite/zabbix.db < images.sql
+shell> sqlite3 /var/lib/sqlite/zabbix.db < data.sql
+
+IBM DB2:
+shell> db2 "create database zabbix using codeset utf-8 territory us pagesize 32768"
+shell> cd database/ibm_db2
+shell> db2batch -d zabbix -f schema.sql
+shell> db2batch -d zabbix -f images.sql
+shell> db2batch -d zabbix -f data.sql
+
+Upgrade procedure https://www.zabbix.com/documentation/2.4/manual/installation/upgrade
+
+Pleasese see http://www.zabbix.com/ for detailed information about Zabbix.
+On-line Zabbix documentation is available at http://www.zabbix.com/documentation/2.4/manual/installation/install .
+ see https://www.zabbix.com/documentation/2.2/manual/installation for installation instructions.
+
+For use NMAP please edit sudoers
+======================================================================

Added: head/net-mgmt/zabbix24-server/files/zabbix_agentd.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/files/zabbix_agentd.in	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# PROVIDE: zabbix_agentd
+# REQUIRE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
+# enable zabbix_agentd:
+#
+# zabbix_agentd_enable (bool): Set to NO by default.  Set it to YES to
+#         enable zabbix_agentd.
+#
+
+. /etc/rc.subr
+
+name="zabbix_agentd"
+rcvar=zabbix_agentd_enable
+
+command="%%PREFIX%%/sbin/${name}"
+required_files="%%ETCDIR%%/${name}.conf"
+
+load_rc_config $name
+
+: ${zabbix_agentd_enable="NO"}
+
+run_rc_command "$1"

Added: head/net-mgmt/zabbix24-server/files/zabbix_proxy.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/files/zabbix_proxy.in	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# PROVIDE: zabbix_proxy
+# REQUIRE: DAEMON%%ZABBIX_REQUIRE%%
+# KEYWORD: shutdown
+#
+# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
+# enable zabbix_proxy:
+#
+# zabbix_proxy_enable (bool): Set to NO by default.  Set it to YES to
+#         enable zabbix_proxy.
+#
+
+. /etc/rc.subr
+
+name="zabbix_proxy"
+rcvar=zabbix_proxy_enable
+
+command="%%PREFIX%%/sbin/${name}"
+required_files="%%ETCDIR%%/${name}.conf"
+
+load_rc_config $name
+
+: ${zabbix_proxy_enable="NO"}
+
+run_rc_command "$1"

Added: head/net-mgmt/zabbix24-server/files/zabbix_server.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/files/zabbix_server.in	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# PROVIDE: zabbix_server
+# REQUIRE: DAEMON%%ZABBIX_REQUIRE%%
+# KEYWORD: shutdown
+#
+# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
+# enable zabbix_server:
+#
+# zabbix_server_enable (bool): Set to NO by default.  Set it to YES to
+#         enable zabbix_server.
+#
+
+. /etc/rc.subr
+
+name="zabbix_server"
+rcvar=zabbix_server_enable
+
+command="%%PREFIX%%/sbin/${name}"
+required_files="%%ETCDIR%%/${name}.conf"
+
+load_rc_config $name
+
+: ${zabbix_server_enable="NO"}
+
+run_rc_command "$1"

Added: head/net-mgmt/zabbix24-server/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/pkg-descr	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,10 @@
+Zabbix is an enterprise-class open source distributed monitoring solution.
+
+Zabbix is software that monitors numerous parameters of a network and the
+health and integrity of servers. Zabbix uses a flexible notification
+mechanism that allows users to configure e-mail based alerts for virtually
+any event. This allows a fast reaction to server problems. Zabbix offers
+excellent reporting and data visualisation features based on the stored
+data. This makes Zabbix ideal for capacity planning.
+
+WWW: http://www.zabbix.com/

Added: head/net-mgmt/zabbix24-server/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/pkg-plist	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,49 @@
+%%ETCDIR%%/zabbix_%%ZABBIX_BUILD%%.conf.sample
+man/man8/zabbix_%%ZABBIX_BUILD%%.8.gz
+sbin/zabbix_%%ZABBIX_BUILD%%
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/data.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/schema.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/images.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/data.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/images.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/schema.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/images.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/schema.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/data.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/schema.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/images.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2/data.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/data.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/images.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/schema.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.2/README
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/ibm_db2/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/ibm_db2/rc4_rc5.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/postgresql/rc4_rc5.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/postgresql/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/oracle/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/oracle/rc4_rc5.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/mysql/rc4_rc5.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/mysql/upgrade
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/mysql/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/mysql/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/mysql/upgrade
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/postgresql/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/oracle/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/postgresql/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/oracle/patch.sql
+%%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/mysql/patch.sql
+%%JAVAGW%%sbin/zabbix_java/shutdown.sh
+%%JAVAGW%%sbin/zabbix_java/lib/logback-console.xml
+%%JAVAGW%%sbin/zabbix_java/lib/logback-core-0.9.27.jar
+%%JAVAGW%%sbin/zabbix_java/lib/logback-classic-0.9.27.jar
+%%JAVAGW%%sbin/zabbix_java/lib/logback.xml
+%%JAVAGW%%sbin/zabbix_java/lib/slf4j-api-1.6.1.jar
+%%JAVAGW%%sbin/zabbix_java/lib/android-json-4.3_r3.1.jar
+%%JAVAGW%%sbin/zabbix_java/settings.sh.sample
+%%JAVAGW%%sbin/zabbix_java/startup.sh
+%%JAVAGW%%sbin/zabbix_java/bin/zabbix-java-gateway-%%PORTVERSION%%.jar
+%%SERVER%%@dir %%ETCDIR%%/zabbix/alertscripts
+@dir %%ETCDIR%%/zabbix/externalscripts
+%%PROXY%%@dir %%ETCDIR%%/zabbix_proxy.conf.d
+%%SERVER%%@dir %%ETCDIR%%/zabbix_server.conf.d

Added: head/net-mgmt/zabbix24-server/pkg-plist.agent
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/pkg-plist.agent	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,11 @@
+%%ETCDIR%%/zabbix_agent.conf.sample
+%%ETCDIR%%/zabbix_agentd.conf.sample
+bin/zabbix_get
+bin/zabbix_sender
+sbin/zabbix_agent
+sbin/zabbix_agentd
+@dir %%ETCDIR%%/zabbix_agentd.conf.d
+@dir %%ETCDIR%%/zabbix_agent.conf.d
+man/man1/zabbix_get.1.gz
+man/man1/zabbix_sender.1.gz
+man/man8/zabbix_%%ZABBIX_BUILD%%d.8.gz

Added: head/net-mgmt/zabbix24-server/pkg-plist.frontend
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/zabbix24-server/pkg-plist.frontend	Sun Nov  9 11:06:52 2014	(r372355)
@@ -0,0 +1,827 @@
+%%WWWDIR%%/acknow.php
+%%WWWDIR%%/actionconf.php
+%%WWWDIR%%/adm.gui.php
+%%WWWDIR%%/adm.housekeeper.php
+%%WWWDIR%%/adm.iconmapping.php
+%%WWWDIR%%/adm.images.php
+%%WWWDIR%%/adm.macros.php
+%%WWWDIR%%/adm.other.php
+%%WWWDIR%%/adm.regexps.php
+%%WWWDIR%%/adm.triggerdisplayoptions.php
+%%WWWDIR%%/adm.triggerseverities.php
+%%WWWDIR%%/adm.valuemapping.php
+%%WWWDIR%%/adm.workingtime.php
+%%WWWDIR%%/api_jsonrpc.php
+%%WWWDIR%%/applications.php
+%%WWWDIR%%/audio/alarm_average.wav
+%%WWWDIR%%/audio/alarm_disaster.wav
+%%WWWDIR%%/audio/alarm_high.wav
+%%WWWDIR%%/audio/alarm_information.wav
+%%WWWDIR%%/audio/alarm_ok.wav
+%%WWWDIR%%/audio/alarm_warning.wav
+%%WWWDIR%%/audio/no_sound.wav
+%%WWWDIR%%/auditacts.php
+%%WWWDIR%%/auditlogs.php
+%%WWWDIR%%/authentication.php
+%%WWWDIR%%/browserwarning.php
+%%WWWDIR%%/chart.php
+%%WWWDIR%%/chart2.php
+%%WWWDIR%%/chart3.php
+%%WWWDIR%%/chart4.php
+%%WWWDIR%%/chart5.php
+%%WWWDIR%%/chart6.php
+%%WWWDIR%%/chart7.php
+%%WWWDIR%%/chart_bar.php
+%%WWWDIR%%/charts.php
+%%WWWDIR%%/conf.import.php
+%%WWWDIR%%/conf/.htaccess
+%%WWWDIR%%/conf/maintenance.inc.php
+%%WWWDIR%%/conf/zabbix.conf.php.example
+%%WWWDIR%%/dashboard.php
+%%WWWDIR%%/dashconf.php
+%%WWWDIR%%/disc_prototypes.php
+%%WWWDIR%%/discovery.php
+%%WWWDIR%%/discoveryconf.php
+%%WWWDIR%%/events.php
+%%WWWDIR%%/fonts/DejaVuSans.ttf
+%%WWWDIR%%/graphs.php
+%%WWWDIR%%/history.php
+%%WWWDIR%%/host_discovery.php
+%%WWWDIR%%/host_prototypes.php
+%%WWWDIR%%/host_screen.php
+%%WWWDIR%%/hostgroups.php
+%%WWWDIR%%/hostinventories.php
+%%WWWDIR%%/hostinventoriesoverview.php
+%%WWWDIR%%/hosts.php
+%%WWWDIR%%/httpconf.php
+%%WWWDIR%%/httpdetails.php
+%%WWWDIR%%/httpmon.php
+%%WWWDIR%%/image.php
+%%WWWDIR%%/images/flash/zbxclock.swf
+%%WWWDIR%%/images/general/arrow_down.png
+%%WWWDIR%%/images/general/arrow_down2.png
+%%WWWDIR%%/images/general/arrow_up.png
+%%WWWDIR%%/images/general/arrow_up2.png
+%%WWWDIR%%/images/general/bar/arrow_down.gif
+%%WWWDIR%%/images/general/bar/arrow_sm.gif
+%%WWWDIR%%/images/general/bar/arrow_up.gif
+%%WWWDIR%%/images/general/bar/bar_bg.png
+%%WWWDIR%%/images/general/bar/bar_middle.png
+%%WWWDIR%%/images/general/bar/bg.png
+%%WWWDIR%%/images/general/bar/cal.gif
+%%WWWDIR%%/images/general/bar/left.png
+%%WWWDIR%%/images/general/bar/left_arr.png
+%%WWWDIR%%/images/general/bar/right.png
+%%WWWDIR%%/images/general/bar/right_arr.png
+%%WWWDIR%%/images/general/browserwarning/background.png
+%%WWWDIR%%/images/general/browserwarning/chrome.png
+%%WWWDIR%%/images/general/browserwarning/firefox.png
+%%WWWDIR%%/images/general/browserwarning/ie.png
+%%WWWDIR%%/images/general/browserwarning/opera.png
+%%WWWDIR%%/images/general/browserwarning/safari.png
+%%WWWDIR%%/images/general/bttn/arrowdown.png
+%%WWWDIR%%/images/general/bttn/arrowleft.png
+%%WWWDIR%%/images/general/bttn/arrowright.png
+%%WWWDIR%%/images/general/bttn/arrowup.png
+%%WWWDIR%%/images/general/bttn/close.png
+%%WWWDIR%%/images/general/bttn/config.png
+%%WWWDIR%%/images/general/bttn/config_hl.png
+%%WWWDIR%%/images/general/bttn/down.png
+%%WWWDIR%%/images/general/bttn/fullscreen.png
+%%WWWDIR%%/images/general/bttn/help.png
+%%WWWDIR%%/images/general/bttn/menu.png
+%%WWWDIR%%/images/general/bttn/minus.png
+%%WWWDIR%%/images/general/bttn/move.png
+%%WWWDIR%%/images/general/bttn/mute.png
+%%WWWDIR%%/images/general/bttn/plus.png
+%%WWWDIR%%/images/general/bttn/reset.png
+%%WWWDIR%%/images/general/bttn/snooze.png
+%%WWWDIR%%/images/general/bttn/sound.png
+%%WWWDIR%%/images/general/bttn/up.png
+%%WWWDIR%%/images/general/chart.png
+%%WWWDIR%%/images/general/dbl_arrow_down.png
+%%WWWDIR%%/images/general/dbl_arrow_down2.png
+%%WWWDIR%%/images/general/dbl_arrow_up.png
+%%WWWDIR%%/images/general/dbl_arrow_up2.png
+%%WWWDIR%%/images/general/error.png
+%%WWWDIR%%/images/general/error2.png
+%%WWWDIR%%/images/general/error3.png
+%%WWWDIR%%/images/general/ipmi_available.png
+%%WWWDIR%%/images/general/ipmi_available_bb.png
+%%WWWDIR%%/images/general/ipmi_unavailable.png
+%%WWWDIR%%/images/general/ipmi_unknown.png
+%%WWWDIR%%/images/general/jmx_available.png
+%%WWWDIR%%/images/general/jmx_available_bb.png
+%%WWWDIR%%/images/general/jmx_unavailable.png
+%%WWWDIR%%/images/general/jmx_unknown.png
+%%WWWDIR%%/images/general/login/background.png
+%%WWWDIR%%/images/general/login/glow.png
+%%WWWDIR%%/images/general/login/logo.png
+%%WWWDIR%%/images/general/minus.png
+%%WWWDIR%%/images/general/multiselect.png
+%%WWWDIR%%/images/general/no_icon.png
+%%WWWDIR%%/images/general/ok.png
+%%WWWDIR%%/images/general/ok_bb.png
+%%WWWDIR%%/images/general/ok_icon.png
+%%WWWDIR%%/images/general/ok_icon_bb.png
+%%WWWDIR%%/images/general/plus.png
+%%WWWDIR%%/images/general/setup/background.png
+%%WWWDIR%%/images/general/setup/welcome_screen.png
+%%WWWDIR%%/images/general/snmp_available.png
+%%WWWDIR%%/images/general/snmp_available_bb.png
+%%WWWDIR%%/images/general/snmp_unavailable.png
+%%WWWDIR%%/images/general/snmp_unknown.png
+%%WWWDIR%%/images/general/sort_down.png
+%%WWWDIR%%/images/general/sort_down_blue.png
+%%WWWDIR%%/images/general/sort_down_od.png
+%%WWWDIR%%/images/general/sort_up.png
+%%WWWDIR%%/images/general/sort_up_blue.png
+%%WWWDIR%%/images/general/sort_up_od.png
+%%WWWDIR%%/images/general/tick.png
+%%WWWDIR%%/images/general/tr_space.gif
+%%WWWDIR%%/images/general/tr_top_bottom.gif
+%%WWWDIR%%/images/general/tr_top_right.gif
+%%WWWDIR%%/images/general/tr_top_right_bottom.gif
+%%WWWDIR%%/images/general/transparent.png
+%%WWWDIR%%/images/general/tree/minus.gif
+%%WWWDIR%%/images/general/tree/plus.gif
+%%WWWDIR%%/images/general/tree/point.gif
+%%WWWDIR%%/images/general/tree/pointc.gif
+%%WWWDIR%%/images/general/tree/pointl.gif
+%%WWWDIR%%/images/general/tree/zero.gif
+%%WWWDIR%%/images/general/unknown_icon.png
+%%WWWDIR%%/images/general/warning.png
+%%WWWDIR%%/images/general/warning2.png
+%%WWWDIR%%/images/general/wrench12transp.png
+%%WWWDIR%%/images/general/zabbix.ico
+%%WWWDIR%%/images/general/zabbix.png
+%%WWWDIR%%/images/general/zabbix_available.png
+%%WWWDIR%%/images/general/zabbix_available_bb.png
+%%WWWDIR%%/images/general/zabbix_bb.ico
+%%WWWDIR%%/images/general/zabbix_bb.png
+%%WWWDIR%%/images/general/zabbix_ob.ico
+%%WWWDIR%%/images/general/zabbix_od.png
+%%WWWDIR%%/images/general/zabbix_unavailable.png
+%%WWWDIR%%/images/general/zabbix_unknown.png
+%%WWWDIR%%/images/general/zero.png
+%%WWWDIR%%/images/gradients/button.gif
+%%WWWDIR%%/images/gradients/gradient.png
+%%WWWDIR%%/images/gradients/header_footer_blue.png
+%%WWWDIR%%/images/gradients/header_link_blue.png
+%%WWWDIR%%/images/gradients/menu_not_active.gif
+%%WWWDIR%%/images/gradients/menu_not_active2.gif
+%%WWWDIR%%/images/gradients/menu_not_active_bb.gif
+%%WWWDIR%%/images/gradients/menu_not_active_blue.png
+%%WWWDIR%%/images/gradients/sla_blue.png
+%%WWWDIR%%/images/gradients/sla_blue15.png
+%%WWWDIR%%/images/gradients/sla_green.png
+%%WWWDIR%%/images/gradients/sla_green15.png
+%%WWWDIR%%/images/gradients/sla_red.png
+%%WWWDIR%%/images/gradients/sla_red15.png
+%%WWWDIR%%/images/gradients/table_head2_bb.gif
+%%WWWDIR%%/images/gradients/table_head_bb.gif
+%%WWWDIR%%/imgstore.php
+%%WWWDIR%%/include/.htaccess
+%%WWWDIR%%/include/acknow.inc.php
+%%WWWDIR%%/include/actions.inc.php
+%%WWWDIR%%/include/audit.inc.php
+%%WWWDIR%%/include/blocks.inc.php
+%%WWWDIR%%/include/classes/api/API.php
+%%WWWDIR%%/include/classes/api/APIException.php
+%%WWWDIR%%/include/classes/api/CApiClientResponse.php
+%%WWWDIR%%/include/classes/api/CApiService.php
+%%WWWDIR%%/include/classes/api/CApiServiceFactory.php
+%%WWWDIR%%/include/classes/api/CRelationMap.php
+%%WWWDIR%%/include/classes/api/clients/CApiClient.php
+%%WWWDIR%%/include/classes/api/clients/CLocalApiClient.php
+%%WWWDIR%%/include/classes/api/managers/CApplicationManager.php
+%%WWWDIR%%/include/classes/api/managers/CHistoryManager.php
+%%WWWDIR%%/include/classes/api/managers/CHttpTestManager.php
+%%WWWDIR%%/include/classes/api/services/CAPIInfo.php
+%%WWWDIR%%/include/classes/api/services/CAction.php
+%%WWWDIR%%/include/classes/api/services/CAlert.php
+%%WWWDIR%%/include/classes/api/services/CApplication.php
+%%WWWDIR%%/include/classes/api/services/CConfiguration.php
+%%WWWDIR%%/include/classes/api/services/CDCheck.php
+%%WWWDIR%%/include/classes/api/services/CDHost.php
+%%WWWDIR%%/include/classes/api/services/CDRule.php
+%%WWWDIR%%/include/classes/api/services/CDService.php
+%%WWWDIR%%/include/classes/api/services/CDiscoveryRule.php
+%%WWWDIR%%/include/classes/api/services/CEvent.php
+%%WWWDIR%%/include/classes/api/services/CGraph.php
+%%WWWDIR%%/include/classes/api/services/CGraphGeneral.php
+%%WWWDIR%%/include/classes/api/services/CGraphItem.php
+%%WWWDIR%%/include/classes/api/services/CGraphPrototype.php
+%%WWWDIR%%/include/classes/api/services/CHistory.php
+%%WWWDIR%%/include/classes/api/services/CHost.php
+%%WWWDIR%%/include/classes/api/services/CHostBase.php
+%%WWWDIR%%/include/classes/api/services/CHostGeneral.php
+%%WWWDIR%%/include/classes/api/services/CHostGroup.php
+%%WWWDIR%%/include/classes/api/services/CHostInterface.php
+%%WWWDIR%%/include/classes/api/services/CHostPrototype.php
+%%WWWDIR%%/include/classes/api/services/CHttpTest.php
+%%WWWDIR%%/include/classes/api/services/CIconMap.php
+%%WWWDIR%%/include/classes/api/services/CImage.php
+%%WWWDIR%%/include/classes/api/services/CItem.php
+%%WWWDIR%%/include/classes/api/services/CItemGeneral.php
+%%WWWDIR%%/include/classes/api/services/CItemPrototype.php
+%%WWWDIR%%/include/classes/api/services/CMaintenance.php
+%%WWWDIR%%/include/classes/api/services/CMap.php
+%%WWWDIR%%/include/classes/api/services/CMapElement.php
+%%WWWDIR%%/include/classes/api/services/CMediatype.php
+%%WWWDIR%%/include/classes/api/services/CProxy.php
+%%WWWDIR%%/include/classes/api/services/CScreen.php
+%%WWWDIR%%/include/classes/api/services/CScreenItem.php
+%%WWWDIR%%/include/classes/api/services/CScript.php
+%%WWWDIR%%/include/classes/api/services/CService.php
+%%WWWDIR%%/include/classes/api/services/CTemplate.php
+%%WWWDIR%%/include/classes/api/services/CTemplateScreen.php
+%%WWWDIR%%/include/classes/api/services/CTemplateScreenItem.php
+%%WWWDIR%%/include/classes/api/services/CTrigger.php
+%%WWWDIR%%/include/classes/api/services/CTriggerGeneral.php
+%%WWWDIR%%/include/classes/api/services/CTriggerPrototype.php
+%%WWWDIR%%/include/classes/api/services/CUser.php
+%%WWWDIR%%/include/classes/api/services/CUserGroup.php
+%%WWWDIR%%/include/classes/api/services/CUserMacro.php
+%%WWWDIR%%/include/classes/api/services/CUserMedia.php
+%%WWWDIR%%/include/classes/api/wrappers/CApiWrapper.php
+%%WWWDIR%%/include/classes/api/wrappers/CFrontendApiWrapper.php
+%%WWWDIR%%/include/classes/core/CAjaxResponse.php
+%%WWWDIR%%/include/classes/core/CAutoloader.php
+%%WWWDIR%%/include/classes/core/CConfigFile.php
+%%WWWDIR%%/include/classes/core/CHttpRequest.php
+%%WWWDIR%%/include/classes/core/CJsonRpc.php
+%%WWWDIR%%/include/classes/core/CRegistryFactory.php
+%%WWWDIR%%/include/classes/core/CSession.php
+%%WWWDIR%%/include/classes/core/CView.php
+%%WWWDIR%%/include/classes/core/ConfigFileException.php
+%%WWWDIR%%/include/classes/core/Manager.php
+%%WWWDIR%%/include/classes/core/Z.php
+%%WWWDIR%%/include/classes/core/ZBase.php
+%%WWWDIR%%/include/classes/db/DB.php
+%%WWWDIR%%/include/classes/db/DBException.php
+%%WWWDIR%%/include/classes/db/Db2DbBackend.php
+%%WWWDIR%%/include/classes/db/DbBackend.php
+%%WWWDIR%%/include/classes/db/MysqlDbBackend.php
+%%WWWDIR%%/include/classes/db/OracleDbBackend.php
+%%WWWDIR%%/include/classes/db/PostgresqlDbBackend.php
+%%WWWDIR%%/include/classes/db/SqliteDbBackend.php
+%%WWWDIR%%/include/classes/debug/CProfiler.php
+%%WWWDIR%%/include/classes/export/CConfigurationExport.php
+%%WWWDIR%%/include/classes/export/CConfigurationExportBuilder.php
+%%WWWDIR%%/include/classes/export/writers/CExportWriter.php
+%%WWWDIR%%/include/classes/export/writers/CExportWriterFactory.php
+%%WWWDIR%%/include/classes/export/writers/CJsonExportWriter.php
+%%WWWDIR%%/include/classes/export/writers/CXmlExportWriter.php
+%%WWWDIR%%/include/classes/graphdraw/CBarGraphDraw.php
+%%WWWDIR%%/include/classes/graphdraw/CGraphDraw.php
+%%WWWDIR%%/include/classes/graphdraw/CLineGraphDraw.php
+%%WWWDIR%%/include/classes/graphdraw/CPieGraphDraw.php
+%%WWWDIR%%/include/classes/helpers/CArrayHelper.php
+%%WWWDIR%%/include/classes/helpers/CConditionHelper.php
+%%WWWDIR%%/include/classes/helpers/CHtml.php
+%%WWWDIR%%/include/classes/helpers/CJs.php
+%%WWWDIR%%/include/classes/helpers/CMenuPopupHelper.php
+%%WWWDIR%%/include/classes/helpers/CUploadFile.php
+%%WWWDIR%%/include/classes/html/CArea.php
+%%WWWDIR%%/include/classes/html/CAreaMap.php
+%%WWWDIR%%/include/classes/html/CButton.php
+%%WWWDIR%%/include/classes/html/CButtonCancel.php
+%%WWWDIR%%/include/classes/html/CButtonDelete.php
+%%WWWDIR%%/include/classes/html/CButtonPopup.php
+%%WWWDIR%%/include/classes/html/CButtonQMessage.php
+%%WWWDIR%%/include/classes/html/CCheckBox.php
+%%WWWDIR%%/include/classes/html/CCol.php
+%%WWWDIR%%/include/classes/html/CCollapsibleUiWidget.php
+%%WWWDIR%%/include/classes/html/CColor.php
+%%WWWDIR%%/include/classes/html/CColorCell.php
+%%WWWDIR%%/include/classes/html/CComboBox.php
+%%WWWDIR%%/include/classes/html/CComboItem.php
+%%WWWDIR%%/include/classes/html/CDiv.php
+%%WWWDIR%%/include/classes/html/CEditableComboBox.php
+%%WWWDIR%%/include/classes/html/CFile.php
+%%WWWDIR%%/include/classes/html/CFlash.php
+%%WWWDIR%%/include/classes/html/CFlashClock.php
+%%WWWDIR%%/include/classes/html/CFlashEmbed.php
+%%WWWDIR%%/include/classes/html/CForm.php
+%%WWWDIR%%/include/classes/html/CFormList.php
+%%WWWDIR%%/include/classes/html/CFormTable.php
+%%WWWDIR%%/include/classes/html/CHelp.php
+%%WWWDIR%%/include/classes/html/CHostsInfo.php
+%%WWWDIR%%/include/classes/html/CIFrame.php
+%%WWWDIR%%/include/classes/html/CIcon.php
+%%WWWDIR%%/include/classes/html/CImageTextTable.php
+%%WWWDIR%%/include/classes/html/CImg.php
+%%WWWDIR%%/include/classes/html/CInput.php
+%%WWWDIR%%/include/classes/html/CJsScript.php
+%%WWWDIR%%/include/classes/html/CLabel.php
+%%WWWDIR%%/include/classes/html/CLink.php
+%%WWWDIR%%/include/classes/html/CList.php
+%%WWWDIR%%/include/classes/html/CListBox.php
+%%WWWDIR%%/include/classes/html/CListItem.php
+%%WWWDIR%%/include/classes/html/CMultiSelect.php
+%%WWWDIR%%/include/classes/html/CNumericBox.php
+%%WWWDIR%%/include/classes/html/CObject.php
+%%WWWDIR%%/include/classes/html/CParam.php
+%%WWWDIR%%/include/classes/html/CPassBox.php
+%%WWWDIR%%/include/classes/html/CRadioButton.php
+%%WWWDIR%%/include/classes/html/CRadioButtonList.php
+%%WWWDIR%%/include/classes/html/CRow.php
+%%WWWDIR%%/include/classes/html/CServerInfo.php
+%%WWWDIR%%/include/classes/html/CSeverity.php
+%%WWWDIR%%/include/classes/html/CSpan.php
+%%WWWDIR%%/include/classes/html/CSubmit.php
+%%WWWDIR%%/include/classes/html/CTabView.php
+%%WWWDIR%%/include/classes/html/CTable.php
+%%WWWDIR%%/include/classes/html/CTableInfo.php
+%%WWWDIR%%/include/classes/html/CTag.php
+%%WWWDIR%%/include/classes/html/CTextArea.php
+%%WWWDIR%%/include/classes/html/CTextBox.php
+%%WWWDIR%%/include/classes/html/CTriggersInfo.php
+%%WWWDIR%%/include/classes/html/CTweenBox.php
+%%WWWDIR%%/include/classes/html/CUiWidget.php
+%%WWWDIR%%/include/classes/html/CVar.php
+%%WWWDIR%%/include/classes/html/CVisibilityBox.php
+%%WWWDIR%%/include/classes/html/CWarning.php
+%%WWWDIR%%/include/classes/html/pageheader/CPageHeader.php
+%%WWWDIR%%/include/classes/html/widget/CWidget.php
+%%WWWDIR%%/include/classes/import/C24TriggerConverter.php
+%%WWWDIR%%/include/classes/import/CConfigurationImport.php
+%%WWWDIR%%/include/classes/import/CImportReferencer.php
+%%WWWDIR%%/include/classes/import/CImportedObjectContainer.php
+%%WWWDIR%%/include/classes/import/CXmlImport18.php
+%%WWWDIR%%/include/classes/import/formatters/C20ImportFormatter.php
+%%WWWDIR%%/include/classes/import/formatters/CImportFormatter.php
+%%WWWDIR%%/include/classes/import/importers/CAbstractScreenImporter.php
+%%WWWDIR%%/include/classes/import/importers/CHostImporter.php
+%%WWWDIR%%/include/classes/import/importers/CImporter.php
+%%WWWDIR%%/include/classes/import/importers/CMapImporter.php
+%%WWWDIR%%/include/classes/import/importers/CScreenImporter.php
+%%WWWDIR%%/include/classes/import/importers/CTemplateImporter.php
+%%WWWDIR%%/include/classes/import/importers/CTemplateScreenImporter.php
+%%WWWDIR%%/include/classes/import/readers/CImportReader.php
+%%WWWDIR%%/include/classes/import/readers/CImportReaderFactory.php
+%%WWWDIR%%/include/classes/import/readers/CJsonImportReader.php
+%%WWWDIR%%/include/classes/import/readers/CXmlImportReader.php
+%%WWWDIR%%/include/classes/items/CHelpItems.php
+%%WWWDIR%%/include/classes/json/CJson.php
+%%WWWDIR%%/include/classes/ldap/CLdap.php
+%%WWWDIR%%/include/classes/macros/CMacrosResolver.php
+%%WWWDIR%%/include/classes/macros/CMacrosResolverGeneral.php
+%%WWWDIR%%/include/classes/macros/CMacrosResolverHelper.php
+%%WWWDIR%%/include/classes/pagefilter/CPageFilter.php
+%%WWWDIR%%/include/classes/parsers/CConditionFormula.php
+%%WWWDIR%%/include/classes/parsers/CFunctionMacroParser.php
+%%WWWDIR%%/include/classes/parsers/CItemKey.php
+%%WWWDIR%%/include/classes/parsers/CMacroParser.php
+%%WWWDIR%%/include/classes/parsers/CParser.php
+%%WWWDIR%%/include/classes/parsers/CSetParser.php
+%%WWWDIR%%/include/classes/parsers/CTriggerExpression.php
+%%WWWDIR%%/include/classes/parsers/results/CFunctionMacroParserResult.php
+%%WWWDIR%%/include/classes/parsers/results/CParserResult.php
+%%WWWDIR%%/include/classes/parsers/results/CTriggerExpressionParserResult.php
+%%WWWDIR%%/include/classes/regexp/CGlobalRegexp.php
+%%WWWDIR%%/include/classes/routing/CUrl.php
+%%WWWDIR%%/include/classes/routing/CUrlFactory.php
+%%WWWDIR%%/include/classes/screens/CScreenActions.php
+%%WWWDIR%%/include/classes/screens/CScreenBase.php
+%%WWWDIR%%/include/classes/screens/CScreenBuilder.php
+%%WWWDIR%%/include/classes/screens/CScreenChart.php
+%%WWWDIR%%/include/classes/screens/CScreenClock.php
+%%WWWDIR%%/include/classes/screens/CScreenDataOverview.php
+%%WWWDIR%%/include/classes/screens/CScreenEvents.php
+%%WWWDIR%%/include/classes/screens/CScreenGraph.php
+%%WWWDIR%%/include/classes/screens/CScreenHistory.php
+%%WWWDIR%%/include/classes/screens/CScreenHostTriggers.php
+%%WWWDIR%%/include/classes/screens/CScreenHostgroupTriggers.php
+%%WWWDIR%%/include/classes/screens/CScreenHostsInfo.php
+%%WWWDIR%%/include/classes/screens/CScreenLldGraph.php
+%%WWWDIR%%/include/classes/screens/CScreenLldGraphBase.php
+%%WWWDIR%%/include/classes/screens/CScreenLldSimpleGraph.php
+%%WWWDIR%%/include/classes/screens/CScreenMap.php
+%%WWWDIR%%/include/classes/screens/CScreenPlainText.php
+%%WWWDIR%%/include/classes/screens/CScreenScreen.php
+%%WWWDIR%%/include/classes/screens/CScreenServerInfo.php
+%%WWWDIR%%/include/classes/screens/CScreenSimpleGraph.php
+%%WWWDIR%%/include/classes/screens/CScreenSystemStatus.php
+%%WWWDIR%%/include/classes/screens/CScreenTriggersInfo.php
+%%WWWDIR%%/include/classes/screens/CScreenTriggersOverview.php
+%%WWWDIR%%/include/classes/screens/CScreenUrl.php
+%%WWWDIR%%/include/classes/server/CZabbixServer.php
+%%WWWDIR%%/include/classes/services/CServicesSlaCalculator.php
+%%WWWDIR%%/include/classes/setup/CFrontendSetup.php
+%%WWWDIR%%/include/classes/setup/CSetupWizard.php
+%%WWWDIR%%/include/classes/sysmaps/CCanvas.php
+%%WWWDIR%%/include/classes/sysmaps/CMapPainter.php
+%%WWWDIR%%/include/classes/tree/CServiceTree.php
+%%WWWDIR%%/include/classes/tree/CTree.php
+%%WWWDIR%%/include/classes/triggers/CTextTriggerConstructor.php
+%%WWWDIR%%/include/classes/user/CFavorite.php
+%%WWWDIR%%/include/classes/user/CProfile.php
+%%WWWDIR%%/include/classes/user/CWebUser.php
+%%WWWDIR%%/include/classes/validators/CActionCondValidator.php
+%%WWWDIR%%/include/classes/validators/CCollectionValidator.php
+%%WWWDIR%%/include/classes/validators/CColorValidator.php
+%%WWWDIR%%/include/classes/validators/CDecimalStringValidator.php
+%%WWWDIR%%/include/classes/validators/CDecimalValidator.php
+%%WWWDIR%%/include/classes/validators/CFunctionValidator.php
+%%WWWDIR%%/include/classes/validators/CIdValidator.php
+%%WWWDIR%%/include/classes/validators/CLdapAuthValidator.php
+%%WWWDIR%%/include/classes/validators/CLimitedSetValidator.php
+%%WWWDIR%%/include/classes/validators/CPartialValidatorInterface.php
+%%WWWDIR%%/include/classes/validators/CRegexValidator.php
+%%WWWDIR%%/include/classes/validators/CStringValidator.php
+%%WWWDIR%%/include/classes/validators/CTimePeriodValidator.php
+%%WWWDIR%%/include/classes/validators/CValidator.php
+%%WWWDIR%%/include/classes/validators/event/CEventSourceObjectValidator.php
+%%WWWDIR%%/include/classes/validators/host/CHostNormalValidator.php
+%%WWWDIR%%/include/classes/validators/hostgroup/CHostGroupNormalValidator.php
+%%WWWDIR%%/include/classes/validators/object/CConditionValidator.php
+%%WWWDIR%%/include/classes/validators/object/CUpdateDiscoveredValidator.php
+%%WWWDIR%%/include/classes/validators/schema/CPartialSchemaValidator.php
+%%WWWDIR%%/include/classes/validators/schema/CSchemaValidator.php
+%%WWWDIR%%/include/classes/validators/string/CLldMacroStringValidator.php
+%%WWWDIR%%/include/config.inc.php
+%%WWWDIR%%/include/db.inc.php
+%%WWWDIR%%/include/debug.inc.php
+%%WWWDIR%%/include/defines.inc.php
+%%WWWDIR%%/include/discovery.inc.php
+%%WWWDIR%%/include/draw.inc.php
+%%WWWDIR%%/include/events.inc.php
+%%WWWDIR%%/include/forms.inc.php
+%%WWWDIR%%/include/func.inc.php
+%%WWWDIR%%/include/gettextwrapper.inc.php
+%%WWWDIR%%/include/graphs.inc.php
+%%WWWDIR%%/include/hosts.inc.php
+%%WWWDIR%%/include/html.inc.php
+%%WWWDIR%%/include/httptest.inc.php
+%%WWWDIR%%/include/ident.inc.php
+%%WWWDIR%%/include/images.inc.php
+%%WWWDIR%%/include/items.inc.php
+%%WWWDIR%%/include/js.inc.php
+%%WWWDIR%%/include/locales.inc.php
+%%WWWDIR%%/include/maintenances.inc.php
+%%WWWDIR%%/include/maps.inc.php
+%%WWWDIR%%/include/media.inc.php
+%%WWWDIR%%/include/menu.inc.php
+%%WWWDIR%%/include/page_footer.php
+%%WWWDIR%%/include/page_header.php
+%%WWWDIR%%/include/perm.inc.php
+%%WWWDIR%%/include/profiles.inc.php
+%%WWWDIR%%/include/regexp.inc.php
+%%WWWDIR%%/include/reports.inc.php
+%%WWWDIR%%/include/schema.inc.php
+%%WWWDIR%%/include/screens.inc.php
+%%WWWDIR%%/include/services.inc.php
+%%WWWDIR%%/include/sounds.inc.php
+%%WWWDIR%%/include/translateDefines.inc.php
+%%WWWDIR%%/include/triggers.inc.php
+%%WWWDIR%%/include/users.inc.php
+%%WWWDIR%%/include/validate.inc.php
+%%WWWDIR%%/include/valuemap.inc.php
+%%WWWDIR%%/include/views/administration.auditacts.list.php
+%%WWWDIR%%/include/views/administration.auditlogs.list.php
+%%WWWDIR%%/include/views/administration.authentication.edit.php
+%%WWWDIR%%/include/views/administration.general.gui.edit.php
+%%WWWDIR%%/include/views/administration.general.housekeeper.edit.php
+%%WWWDIR%%/include/views/administration.general.iconmap.edit.php
+%%WWWDIR%%/include/views/administration.general.iconmap.list.php
+%%WWWDIR%%/include/views/administration.general.image.edit.php
+%%WWWDIR%%/include/views/administration.general.image.list.php
+%%WWWDIR%%/include/views/administration.general.macros.edit.php
+%%WWWDIR%%/include/views/administration.general.other.edit.php
+%%WWWDIR%%/include/views/administration.general.regularexpressions.edit.php
+%%WWWDIR%%/include/views/administration.general.regularexpressions.list.php
+%%WWWDIR%%/include/views/administration.general.triggerDisplayOptions.edit.php
+%%WWWDIR%%/include/views/administration.general.triggerSeverity.edit.php
+%%WWWDIR%%/include/views/administration.general.valuemapping.edit.php
+%%WWWDIR%%/include/views/administration.general.valuemapping.list.php
+%%WWWDIR%%/include/views/administration.general.workingtime.edit.php
+%%WWWDIR%%/include/views/administration.mediatypes.edit.php
+%%WWWDIR%%/include/views/administration.mediatypes.list.php
+%%WWWDIR%%/include/views/administration.proxy.edit.php
+%%WWWDIR%%/include/views/administration.proxy.list.php
+%%WWWDIR%%/include/views/administration.script.edit.php

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411091106.sA9B6ql5008609>