summaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2013-12-19 09:20:01 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2013-12-19 09:20:01 +0000
commit4de24b4b85da5dcb657f6d81b8ce941cc92b2d9f (patch)
treef89b521ba6221f79ce04368ff21c5dbeea1fddb5 /net-mgmt
parent- Update to 0.013 (diff)
Add zabbix22-*
PR: ports/183958 Submitted by: Pakhom Golynga (origin zabbix2-* maintainer)
Notes
Notes: svn path=/head/; revision=336884
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/Makefile4
-rw-r--r--net-mgmt/zabbix22-agent/Makefile18
-rw-r--r--net-mgmt/zabbix22-frontend/Makefile51
-rw-r--r--net-mgmt/zabbix22-proxy/Makefile10
-rw-r--r--net-mgmt/zabbix22-server/Makefile210
-rw-r--r--net-mgmt/zabbix22-server/distinfo2
-rw-r--r--net-mgmt/zabbix22-server/files/patch-src_shutdown.sh12
-rw-r--r--net-mgmt/zabbix22-server/files/patch-src_startup.sh32
-rw-r--r--net-mgmt/zabbix22-server/files/pkg-message.in50
-rw-r--r--net-mgmt/zabbix22-server/files/zabbix_agentd.in26
-rw-r--r--net-mgmt/zabbix22-server/files/zabbix_proxy.in26
-rw-r--r--net-mgmt/zabbix22-server/files/zabbix_server.in26
-rw-r--r--net-mgmt/zabbix22-server/pkg-descr12
-rw-r--r--net-mgmt/zabbix22-server/pkg-plist77
-rw-r--r--net-mgmt/zabbix22-server/pkg-plist.agent9
-rw-r--r--net-mgmt/zabbix22-server/pkg-plist.frontend939
16 files changed, 1504 insertions, 0 deletions
diff --git a/net-mgmt/Makefile b/net-mgmt/Makefile
index 9c931b90d967..ab5fb0e2de5b 100644
--- a/net-mgmt/Makefile
+++ b/net-mgmt/Makefile
@@ -331,6 +331,10 @@
SUBDIR += zabbix2-frontend
SUBDIR += zabbix2-proxy
SUBDIR += zabbix2-server
+ SUBDIR += zabbix22-agent
+ SUBDIR += zabbix22-frontend
+ SUBDIR += zabbix22-proxy
+ SUBDIR += zabbix22-server
SUBDIR += zenoss
SUBDIR += zenpack-checkping
SUBDIR += zenpack-dellmon
diff --git a/net-mgmt/zabbix22-agent/Makefile b/net-mgmt/zabbix22-agent/Makefile
new file mode 100644
index 000000000000..eb5c5f641c0e
--- /dev/null
+++ b/net-mgmt/zabbix22-agent/Makefile
@@ -0,0 +1,18 @@
+# Created by: Pakhom Golynga <pakhom706@gmail.com>
+# $FreeBSD$
+
+PORTNAME= zabbix22
+PKGNAMESUFFIX= -agent
+CATEGORIES= net-mgmt
+
+MASTERDIR= ${.CURDIR}/../zabbix22-server
+
+PLIST= ${PKGDIR}/pkg-plist.agent
+
+OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}${PKGNAMESUFFIX}/options
+OPTIONS_DEFINE= IPV6
+OPTIONS_DEFAULT= IPV6
+
+NO_STAGE= yes
+.include <bsd.port.options.mk>
+.include "${MASTERDIR}/Makefile"
diff --git a/net-mgmt/zabbix22-frontend/Makefile b/net-mgmt/zabbix22-frontend/Makefile
new file mode 100644
index 000000000000..34d4df4c3727
--- /dev/null
+++ b/net-mgmt/zabbix22-frontend/Makefile
@@ -0,0 +1,51 @@
+# Created by: Jim Riggs <ports@christianserving.org>
+# $FreeBSD$
+
+PORTNAME= zabbix22
+PKGNAMESUFFIX= -frontend
+CATEGORIES= net-mgmt
+
+MASTERDIR= ${.CURDIR}/../zabbix22-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
+
+NO_STAGE= yes
+.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:
+ @${INSTALL} -d ${WWWDIR}
+ @cd ${WRKSRC}/frontends/php/ && ${COPYTREE_SHARE} . ${WWWDIR}
+
+.include "${MASTERDIR}/Makefile"
diff --git a/net-mgmt/zabbix22-proxy/Makefile b/net-mgmt/zabbix22-proxy/Makefile
new file mode 100644
index 000000000000..e7c26d598bbd
--- /dev/null
+++ b/net-mgmt/zabbix22-proxy/Makefile
@@ -0,0 +1,10 @@
+# Created by: Pakhom Golynga <pakhom706@gmail.com>
+# $FreeBSD$
+
+PORTNAME= zabbix22
+PKGNAMESUFFIX= -proxy
+
+MASTERDIR= ${.CURDIR}/../zabbix22-server
+
+NO_STAGE= yes
+.include "${MASTERDIR}/Makefile"
diff --git a/net-mgmt/zabbix22-server/Makefile b/net-mgmt/zabbix22-server/Makefile
new file mode 100644
index 000000000000..b32b110f5ff7
--- /dev/null
+++ b/net-mgmt/zabbix22-server/Makefile
@@ -0,0 +1,210 @@
+# Created by: Pakhom Golynga <pakhom706@gmail.com>
+# $FreeBSD$
+
+PORTNAME= zabbix22
+PORTVERSION= 2.2.1
+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= 5 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"
+MAN8+= zabbix_${ZABBIX_BUILD}.8
+USE_RC_SUBR= zabbix_${ZABBIX_BUILD}
+.else
+MAN1+= zabbix_get.1 zabbix_sender.1
+MAN8+= zabbix_${ZABBIX_BUILD}d.8
+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}
+
+.if ${ZABBIX_BUILD} != "agent"
+LIB_DEPENDS= netsnmp:${PORTSDIR}/net-mgmt/net-snmp \
+ execinfo:${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 ODBC JAVAGW MYSQL
+OPTIONS_DEFAULT= MYSQL IPV6 FPING JABBER CURL
+
+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
+IODBC_DESC= Use iODBC for ODBC support
+UNIXODBC_DESC= Use UnixODBC for ODBC support
+
+OPTIONS_SINGLE= DB ODBC
+OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE ORACLE
+OPTIONS_SINGLE_ODBC= IODBC UNIXODBC
+
+NO_STAGE= yes
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MMYSQL}
+ZABBIX_REQUIRE= " mysql"
+USE_MYSQL= yes
+CONFIGURE_ARGS+= --with-mysql
+.endif
+
+.if ${PORT_OPTIONS:MPGSQL}
+ZABBIX_REQUIRE= " postgresql"
+USE_PGSQL= yes
+CONFIGURE_ARGS+= --with-postgresql
+.endif
+
+.if ${PORT_OPTIONS:MSQLITE}
+ZABBIX_REQUIRE= " sqlite"
+USE_SQLITE= 3
+CONFIGURE_ARGS+= --with-sqlite3
+.endif
+
+.if ${PORT_OPTIONS:MORACLE}
+ZABBIX_REQUIRE=
+CONFIGURE_ARGS+= --with-oracle
+.endif
+
+.if ${PORT_OPTIONS:MCURL}
+LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl
+CONFIGURE_ARGS+= --with-libcurl
+.endif
+
+.if ${PORT_OPTIONS:MLDAP}
+USE_OPENLDAP= yes
+CONFIGURE_ARGS+= --with-ldap
+.endif
+
+.if ${PORT_OPTIONS:MIPMI}
+LIB_DEPENDS+= OpenIPMI:${PORTSDIR}/sysutils/openipmi
+CONFIGURE_ARGS+= --with-openipmi
+.endif
+
+.if ${PORT_OPTIONS:MJABBER}
+LIB_DEPENDS+= iksemel:${PORTSDIR}/textproc/iksemel
+CONFIGURE_ARGS+= --with-jabber
+.endif
+
+.if ${PORT_OPTIONS:MFPING}
+RUN_DEPENDS+= fping:${PORTSDIR}/net/fping
+.endif
+
+.if ${PORT_OPTIONS:MSSH}
+LIB_DEPENDS+= ssh2:${PORTSDIR}/security/libssh2
+CONFIGURE_ARGS+= --with-ssh2
+.endif
+
+.if ${PORT_OPTIONS:MIODBC}
+LIB_DEPENDS+= iodbc:${PORTSDIR}/databases/libiodbc
+CONFIGURE_ARGS+= --with-iodbc
+.endif
+
+.if ${PORT_OPTIONS:MUNIXODBC}
+LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC
+CONFIGURE_ARGS+= --with-unixodbc
+.endif
+.endif # if ${ZABBIX_BUILD} != "agent"
+
+.if ${PORT_OPTIONS:MIPV6}
+CONFIGURE_ARGS+= --enable-ipv6
+.endif
+
+.if ${PORT_OPTIONS:MNMAP}
+RUN_DEPENDS+= nmap:${PORTSDIR}/security/nmap \
+ sudo:${PORTSDIR}/security/sudo
+.endif
+
+.if ${PORT_OPTIONS:MJAVAGW}
+USE_JAVA= yes
+CONFIGURE_ARGS+= --enable-java
+PLIST_SUB+= ZABBIX_JAVA="sbin/zabbix_java"
+PLIST_SUB+= JAVAGW=""
+.else
+PLIST_SUB+= JAVAGW="@comment "
+.endif
+
+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"
+.if empty(PORT_OPTIONS:MFPING)
+.endif
+.for d in mysql oracle postgresql sqlite3
+ @${REINPLACE_CMD} -e 's|/bin/ping|/sbin/ping|g; \
+ s|/usr/bin/traceroute|/usr/sbin/traceroute|g; \
+ 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 defined(WITH_JAVAGW)
+ @${MV} ${PREFIX}/sbin/zabbix_java/settings.sh ${PREFIX}/sbin/zabbix_java/settings.sh.sample
+.endif
+
+.if ${ZABBIX_BUILD} != "agent"
+ @${MKDIR} "${DATADIR}/${ZABBIX_BUILD}/database"
+ @cd ${WRKSRC}/upgrades/ && ${COPYTREE_SHARE} dbpatches ${DATADIR}/${ZABBIX_BUILD}/upgrades/
+ @cd ${WRKSRC}/database/ && ${COPYTREE_SHARE} "ibm_db2 mysql oracle postgresql sqlite3" ${DATADIR}/${ZABBIX_BUILD}/database/
+ @${CAT} ${PKGMESSAGE}
+.endif
+.endif # if ${ZABBIX_BUILD} != "frontend"
+
+.include <bsd.port.mk>
diff --git a/net-mgmt/zabbix22-server/distinfo b/net-mgmt/zabbix22-server/distinfo
new file mode 100644
index 000000000000..3aa2a55ee117
--- /dev/null
+++ b/net-mgmt/zabbix22-server/distinfo
@@ -0,0 +1,2 @@
+SHA256 (zabbix-2.2.1.tar.gz) = 29c9e4cefb527bf929797b26a5a1d8a07c55675bfe6a86ff9ef8e46bd792c7fb
+SIZE (zabbix-2.2.1.tar.gz) = 14426358
diff --git a/net-mgmt/zabbix22-server/files/patch-src_shutdown.sh b/net-mgmt/zabbix22-server/files/patch-src_shutdown.sh
new file mode 100644
index 000000000000..51d8a765194c
--- /dev/null
+++ b/net-mgmt/zabbix22-server/files/patch-src_shutdown.sh
@@ -0,0 +1,12 @@
+--- src/zabbix_java/shutdown.sh.orig 2013-11-12 10:07:23.000000000 +0400
++++ src/zabbix_java/shutdown.sh 2013-12-04 16:37:38.000000000 +0400
+@@ -1,7 +1,7 @@
+-#!/bin/bash
++#!/bin/sh
+
+ cd $(dirname $0)
+-source settings.sh
++. settings.sh
+
+ if [ -n "$PID_FILE" ]; then
+ if [ -e "$PID_FILE" ]; then
diff --git a/net-mgmt/zabbix22-server/files/patch-src_startup.sh b/net-mgmt/zabbix22-server/files/patch-src_startup.sh
new file mode 100644
index 000000000000..b1a5f7dbb024
--- /dev/null
+++ b/net-mgmt/zabbix22-server/files/patch-src_startup.sh
@@ -0,0 +1,32 @@
+--- src/zabbix_java/startup.sh.orig 2013-11-12 10:07:23.000000000 +0400
++++ src/zabbix_java/startup.sh 2013-12-04 16:37:05.000000000 +0400
+@@ -1,7 +1,7 @@
+-#!/bin/bash
++#!/bin/sh
+
+ cd $(dirname $0)
+-source settings.sh
++. settings.sh
+
+ if [ -n "$PID_FILE" -a -e "$PID_FILE" ]; then
+ echo "Zabbix Java Gateway is already running"
+@@ -16,8 +16,8 @@
+ fi
+
+ CLASSPATH="lib"
+-for jar in {lib,bin}/*.jar; do
+- if [[ $jar != *junit* ]]; then
++for jar in lib/*.jar bin/*.jar; do
++ if [ "$jar" != "*junit*" ]; then
+ CLASSPATH="$CLASSPATH:$jar"
+ fi
+ done
+@@ -39,7 +39,7 @@
+ COMMAND_LINE="$JAVA $JAVA_OPTIONS -classpath $CLASSPATH $ZABBIX_OPTIONS com.zabbix.gateway.JavaGateway"
+
+ if [ -n "$PID_FILE" ]; then
+- PID=$(/bin/bash -c "$COMMAND_LINE > /dev/null 2>&1 & echo \$!")
++ PID=$(/bin/sh -c "$COMMAND_LINE > /dev/null 2>&1 & echo \$!")
+ if ps -p $PID > /dev/null 2>&1; then
+ echo $PID > $PID_FILE
+ else
diff --git a/net-mgmt/zabbix22-server/files/pkg-message.in b/net-mgmt/zabbix22-server/files/pkg-message.in
new file mode 100644
index 000000000000..9b28577cd1d6
--- /dev/null
+++ b/net-mgmt/zabbix22-server/files/pkg-message.in
@@ -0,0 +1,50 @@
+======================================================================
+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 notes for 2.2.0
+
+ Minimum supported PHP version changed from 5.1.6 to 5.3.0
+ Minimum supported MySQL version changed from 5.0.0 to 5.0.3
+ Accepted data limit when using Zabbix protocol was changed from 128MB to 64MB.
+
+New upgrade procedure
+There are no upgrade SQL scripts anymore - database upgrade is performed by the Zabbix server.
+
+To upgrade an existing database, see the scripts in
+Upgrade notes for 2.2.0 https://www.zabbix.com/documentation/2.2/manual/installation/upgrade_notes_220
+
+Please see https://www.zabbix.com/documentation/2.2/manual/installation for installation instructions.
+
+For use NMAP please edit sudoers
+======================================================================
diff --git a/net-mgmt/zabbix22-server/files/zabbix_agentd.in b/net-mgmt/zabbix22-server/files/zabbix_agentd.in
new file mode 100644
index 000000000000..4af7fa72f13f
--- /dev/null
+++ b/net-mgmt/zabbix22-server/files/zabbix_agentd.in
@@ -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"
diff --git a/net-mgmt/zabbix22-server/files/zabbix_proxy.in b/net-mgmt/zabbix22-server/files/zabbix_proxy.in
new file mode 100644
index 000000000000..58898c6ecd3a
--- /dev/null
+++ b/net-mgmt/zabbix22-server/files/zabbix_proxy.in
@@ -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"
diff --git a/net-mgmt/zabbix22-server/files/zabbix_server.in b/net-mgmt/zabbix22-server/files/zabbix_server.in
new file mode 100644
index 000000000000..4e381a6ff894
--- /dev/null
+++ b/net-mgmt/zabbix22-server/files/zabbix_server.in
@@ -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"
diff --git a/net-mgmt/zabbix22-server/pkg-descr b/net-mgmt/zabbix22-server/pkg-descr
new file mode 100644
index 000000000000..4165c097388f
--- /dev/null
+++ b/net-mgmt/zabbix22-server/pkg-descr
@@ -0,0 +1,12 @@
+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/
diff --git a/net-mgmt/zabbix22-server/pkg-plist b/net-mgmt/zabbix22-server/pkg-plist
new file mode 100644
index 000000000000..1736f8de93cb
--- /dev/null
+++ b/net-mgmt/zabbix22-server/pkg-plist
@@ -0,0 +1,77 @@
+%%ETCDIR%%/zabbix_%%ZABBIX_BUILD%%.conf.sample
+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%%%%ZABBIX_JAVA%%/shutdown.sh
+%%JAVAGW%%%%ZABBIX_JAVA%%/lib/logback-console.xml
+%%JAVAGW%%%%ZABBIX_JAVA%%/lib/logback-core-0.9.27.jar
+%%JAVAGW%%%%ZABBIX_JAVA%%/lib/org-json-2010-12-28.jar
+%%JAVAGW%%%%ZABBIX_JAVA%%/lib/logback-classic-0.9.27.jar
+%%JAVAGW%%%%ZABBIX_JAVA%%/lib/logback.xml
+%%JAVAGW%%%%ZABBIX_JAVA%%/lib/slf4j-api-1.6.1.jar
+%%JAVAGW%%%%ZABBIX_JAVA%%/settings.sh.sample
+%%JAVAGW%%%%ZABBIX_JAVA%%/startup.sh
+%%JAVAGW%%%%ZABBIX_JAVA%%/bin/zabbix-java-gateway-%%PORTVERSION%%.jar
+%%JAVAGW%%@dirrmtry %%ZABBIX_JAVA%%/lib
+%%JAVAGW%%@dirrmtry %%ZABBIX_JAVA%%/bin
+%%JAVAGW%%@dirrmtry %%ZABBIX_JAVA%%
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.2
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/ibm_db2
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/postgresql
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/oracle
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0/mysql
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/2.0
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/mysql
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/postgresql
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8/oracle
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.8
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/postgresql
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/oracle
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6/mysql
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches/1.6
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades/dbpatches
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/upgrades
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/database/ibm_db2
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%/database
+@dirrm %%DATADIR%%/%%ZABBIX_BUILD%%
+@dirrmtry %%DATADIR%%
+%%SERVER%%@dirrmtry %%ETCDIR%%/zabbix/alertscripts
+@dirrmtry %%ETCDIR%%/zabbix/externalscripts
+@dirrmtry %%ETCDIR%%/zabbix
+%%PROXY%%@dirrmtry %%ETCDIR%%/zabbix_proxy.conf.d
+%%SERVER%%@dirrmtry %%ETCDIR%%/zabbix_server.conf.d
+@dirrmtry %%ETCDIR%%
diff --git a/net-mgmt/zabbix22-server/pkg-plist.agent b/net-mgmt/zabbix22-server/pkg-plist.agent
new file mode 100644
index 000000000000..589cb8a158cb
--- /dev/null
+++ b/net-mgmt/zabbix22-server/pkg-plist.agent
@@ -0,0 +1,9 @@
+%%ETCDIR%%/zabbix_agent.conf.sample
+%%ETCDIR%%/zabbix_agentd.conf.sample
+bin/zabbix_get
+bin/zabbix_sender
+sbin/zabbix_agent
+sbin/zabbix_agentd
+@dirrmtry %%ETCDIR%%/zabbix_agentd.conf.d
+@dirrmtry %%ETCDIR%%/zabbix_agent.conf.d
+@dirrmtry %%ETCDIR%%
diff --git a/net-mgmt/zabbix22-server/pkg-plist.frontend b/net-mgmt/zabbix22-server/pkg-plist.frontend
new file mode 100644
index 000000000000..184c5cba9c75
--- /dev/null
+++ b/net-mgmt/zabbix22-server/pkg-plist.frontend
@@ -0,0 +1,939 @@
+%%WWWDIR%%/auditacts.php
+%%WWWDIR%%/jsrpc.php
+%%WWWDIR%%/dashboard.php
+%%WWWDIR%%/host_prototypes.php
+%%WWWDIR%%/audio/alarm_ok.wav
+%%WWWDIR%%/audio/no_sound.wav
+%%WWWDIR%%/audio/alarm_information.wav
+%%WWWDIR%%/audio/alarm_high.wav
+%%WWWDIR%%/audio/alarm_disaster.wav
+%%WWWDIR%%/audio/alarm_average.wav
+%%WWWDIR%%/audio/alarm_warning.wav
+%%WWWDIR%%/media_types.php
+%%WWWDIR%%/disc_prototypes.php
+%%WWWDIR%%/adm.triggerdisplayoptions.php
+%%WWWDIR%%/trigger_prototypes.php
+%%WWWDIR%%/latest.php
+%%WWWDIR%%/hostgroups.php
+%%WWWDIR%%/sysmap.php
+%%WWWDIR%%/popup_right.php
+%%WWWDIR%%/report5.php
+%%WWWDIR%%/report2.php
+%%WWWDIR%%/popup_bitem.php
+%%WWWDIR%%/hostinventoriesoverview.php
+%%WWWDIR%%/discovery.php
+%%WWWDIR%%/hosts.php
+%%WWWDIR%%/popup_period.php
+%%WWWDIR%%/chart6.php
+%%WWWDIR%%/discoveryconf.php
+%%WWWDIR%%/srv_status.php
+%%WWWDIR%%/httpconf.php
+%%WWWDIR%%/adm.gui.php
+%%WWWDIR%%/profile.php
+%%WWWDIR%%/slides.php
+%%WWWDIR%%/jsLoader.php
+%%WWWDIR%%/adm.workingtime.php
+%%WWWDIR%%/include/profiles.inc.php
+%%WWWDIR%%/include/locales.inc.php
+%%WWWDIR%%/include/translateDefines.inc.php
+%%WWWDIR%%/include/draw.inc.php
+%%WWWDIR%%/include/views/administration.general.image.edit.php
+%%WWWDIR%%/include/views/administration.general.regularexpressions.list.php
+%%WWWDIR%%/include/views/monitoring.discovery.php
+%%WWWDIR%%/include/views/configuration.httpconf.popup.php
+%%WWWDIR%%/include/views/configuration.maintenance.list.php
+%%WWWDIR%%/include/views/configuration.services.parent.list.php
+%%WWWDIR%%/include/views/configuration.host.massupdate.php
+%%WWWDIR%%/include/views/general.script.execute.php
+%%WWWDIR%%/include/views/administration.script.edit.php
+%%WWWDIR%%/include/views/configuration.item.list.php
+%%WWWDIR%%/include/views/monitoring.screen.php
+%%WWWDIR%%/include/views/monitoring.charts.php
+%%WWWDIR%%/include/views/monitoring.history.php
+%%WWWDIR%%/include/views/monitoring.hostscreen.php
+%%WWWDIR%%/include/views/monitoring.maps.php
+%%WWWDIR%%/include/views/monitoring.overview.php
+%%WWWDIR%%/include/views/configuration.screen.constructor.list.php
+%%WWWDIR%%/include/views/administration.node.list.php
+%%WWWDIR%%/include/views/monitoring.slides.php
+%%WWWDIR%%/include/views/configuration.discovery.list.php
+%%WWWDIR%%/include/views/general.search.php
+%%WWWDIR%%/include/views/administration.auditacts.list.php
+%%WWWDIR%%/include/views/configuration.application.edit.php
+%%WWWDIR%%/include/views/administration.general.valuemapping.edit.php
+%%WWWDIR%%/include/views/configuration.httpconf.edit.php
+%%WWWDIR%%/include/views/configuration.item.prototype.list.php
+%%WWWDIR%%/include/views/configuration.host.discovery.list.php
+%%WWWDIR%%/include/views/administration.proxy.list.php
+%%WWWDIR%%/include/views/configuration.hostgroups.edit.php
+%%WWWDIR%%/include/views/configuration.sysmap.edit.php
+%%WWWDIR%%/include/views/configuration.copy.elements.php
+%%WWWDIR%%/include/views/administration.general.iconmap.list.php
+%%WWWDIR%%/include/views/administration.mediatypes.edit.php
+%%WWWDIR%%/include/views/administration.users.edit.php
+%%WWWDIR%%/include/views/configuration.services.list.php
+%%WWWDIR%%/include/views/configuration.graph.edit.php
+%%WWWDIR%%/include/views/administration.general.triggerDisplayOptions.edit.php
+%%WWWDIR%%/include/views/configuration.triggers.edit.php
+%%WWWDIR%%/include/views/administration.general.gui.edit.php
+%%WWWDIR%%/include/views/configuration.action.edit.php
+%%WWWDIR%%/include/views/configuration.action.list.php
+%%WWWDIR%%/include/views/configuration.host.edit.php
+%%WWWDIR%%/include/views/configuration.slideconf.edit.php
+%%WWWDIR%%/include/views/conf.import.php
+%%WWWDIR%%/include/views/configuration.screen.list.php
+%%WWWDIR%%/include/views/administration.usergroups.list.php
+%%WWWDIR%%/include/views/administration.general.iconmap.edit.php
+%%WWWDIR%%/include/views/configuration.item.massupdate.php
+%%WWWDIR%%/include/views/administration.mediatypes.list.php
+%%WWWDIR%%/include/views/administration.users.list.php
+%%WWWDIR%%/include/views/administration.general.workingtime.edit.php
+%%WWWDIR%%/include/views/configuration.services.edit.php
+%%WWWDIR%%/include/views/configuration.graph.list.php
+%%WWWDIR%%/include/views/configuration.template.edit.php
+%%WWWDIR%%/include/views/administration.proxy.edit.php
+%%WWWDIR%%/include/views/configuration.triggers.massupdate.php
+%%WWWDIR%%/include/views/configuration.hostgroups.list.php
+%%WWWDIR%%/include/views/administration.general.housekeeper.edit.php
+%%WWWDIR%%/include/views/configuration.slideconf.list.php
+%%WWWDIR%%/include/views/configuration.screen.edit.php
+%%WWWDIR%%/include/views/configuration.host.prototype.edit.php
+%%WWWDIR%%/include/views/configuration.host.prototype.list.php
+%%WWWDIR%%/include/views/configuration.sysmap.constructor.php
+%%WWWDIR%%/include/views/configuration.sysmap.list.php
+%%WWWDIR%%/include/views/general.warning.php
+%%WWWDIR%%/include/views/inventory.host.list.php
+%%WWWDIR%%/include/views/inventory.host.view.php
+%%WWWDIR%%/include/views/monitoring.dashconf.php
+%%WWWDIR%%/include/views/monitoring.triggerComment.php
+%%WWWDIR%%/include/views/js/configuration.slideconf.edit.js.php
+%%WWWDIR%%/include/views/js/configuration.discovery.edit.js.php
+%%WWWDIR%%/include/views/js/administration.general.valuemapping.edit.js.php
+%%WWWDIR%%/include/views/js/administration.general.gui.php
+%%WWWDIR%%/include/views/js/administration.script.edit.js.php
+%%WWWDIR%%/include/views/js/administration.general.triggerDisplayOptions.js.php
+%%WWWDIR%%/include/views/js/configuration.action.edit.js.php
+%%WWWDIR%%/include/views/js/administration.general.iconmap.js.php
+%%WWWDIR%%/include/views/js/administration.users.edit.js.php
+%%WWWDIR%%/include/views/js/administration.general.triggerSeverity.js.php
+%%WWWDIR%%/include/views/js/configuration.host.edit.js.php
+%%WWWDIR%%/include/views/js/configuration.httpconf.edit.js.php
+%%WWWDIR%%/include/views/js/configuration.graph.edit.js.php
+%%WWWDIR%%/include/views/js/configuration.triggers.expression.js.php
+%%WWWDIR%%/include/views/js/configuration.item.edit.js.php
+%%WWWDIR%%/include/views/js/configuration.sysmap.edit.js.php
+%%WWWDIR%%/include/views/js/common.macros.js.php
+%%WWWDIR%%/include/views/js/configuration.triggers.edit.js.php
+%%WWWDIR%%/include/views/js/configuration.services.list.js.php
+%%WWWDIR%%/include/views/js/configuration.httpconf.popup.js.php
+%%WWWDIR%%/include/views/js/configuration.services.child.list.js.php
+%%WWWDIR%%/include/views/js/configuration.sysmaps.js.php
+%%WWWDIR%%/include/views/js/configuration.services.edit.js.php
+%%WWWDIR%%/include/views/js/monitoring.history.js.php
+%%WWWDIR%%/include/views/js/adm.regexprs.edit.js.php
+%%WWWDIR%%/include/views/js/administration.general.housekeeper.edit.js.php
+%%WWWDIR%%/include/views/js/configuration.host.prototype.edit.js.php
+%%WWWDIR%%/include/views/js/configuration.item.list.js.php
+%%WWWDIR%%/include/views/js/monitoring.latest.js.php
+%%WWWDIR%%/include/views/js/monitoring.triggerComment.js.php
+%%WWWDIR%%/include/views/administration.usergroups.edit.php
+%%WWWDIR%%/include/views/administration.authentication.edit.php
+%%WWWDIR%%/include/views/configuration.item.copy.php
+%%WWWDIR%%/include/views/configuration.services.child.list.php
+%%WWWDIR%%/include/views/configuration.triggers.list.php
+%%WWWDIR%%/include/views/general.login.php
+%%WWWDIR%%/include/views/administration.general.other.edit.php
+%%WWWDIR%%/include/views/administration.auditlogs.list.php
+%%WWWDIR%%/include/views/general.browserwarning.php
+%%WWWDIR%%/include/views/administration.general.triggerSeverity.edit.php
+%%WWWDIR%%/include/views/administration.script.list.php
+%%WWWDIR%%/include/views/configuration.item.edit.php
+%%WWWDIR%%/include/views/administration.node.edit.php
+%%WWWDIR%%/include/views/configuration.screen.constructor.edit.php
+%%WWWDIR%%/include/views/administration.general.regularexpressions.edit.php
+%%WWWDIR%%/include/views/administration.general.image.list.php
+%%WWWDIR%%/include/views/configuration.maintenance.edit.php
+%%WWWDIR%%/include/views/administration.general.macros.edit.php
+%%WWWDIR%%/include/views/common.macros.php
+%%WWWDIR%%/include/views/administration.general.valuemapping.list.php
+%%WWWDIR%%/include/views/configuration.application.list.php
+%%WWWDIR%%/include/views/configuration.httpconf.list.php
+%%WWWDIR%%/include/views/configuration.discovery.edit.php
+%%WWWDIR%%/include/views/configuration.triggers.expression.php
+%%WWWDIR%%/include/schema.inc.php
+%%WWWDIR%%/include/triggers.inc.php
+%%WWWDIR%%/include/defines.inc.php
+%%WWWDIR%%/include/actions.inc.php
+%%WWWDIR%%/include/perm.inc.php
+%%WWWDIR%%/include/hosts.inc.php
+%%WWWDIR%%/include/classes/class.cview.php
+%%WWWDIR%%/include/classes/class.ctextbox.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/import/formatters/C20ImportFormatter.php
+%%WWWDIR%%/include/classes/import/formatters/CImportFormatter.php
+%%WWWDIR%%/include/classes/import/CXmlImport18.php
+%%WWWDIR%%/include/classes/import/readers/CImportReaderFactory.php
+%%WWWDIR%%/include/classes/import/readers/CXmlImportReader.php
+%%WWWDIR%%/include/classes/import/readers/CImportReader.php
+%%WWWDIR%%/include/classes/import/readers/CJsonImportReader.php
+%%WWWDIR%%/include/classes/import/CConfigurationImport.php
+%%WWWDIR%%/include/classes/import/importers/CHostImporter.php
+%%WWWDIR%%/include/classes/import/importers/CMapImporter.php
+%%WWWDIR%%/include/classes/import/importers/CTemplateImporter.php
+%%WWWDIR%%/include/classes/import/importers/CAbstractScreenImporter.php
+%%WWWDIR%%/include/classes/import/importers/CScreenImporter.php
+%%WWWDIR%%/include/classes/import/importers/CTemplateScreenImporter.php
+%%WWWDIR%%/include/classes/import/importers/CImporter.php
+%%WWWDIR%%/include/classes/import/CImportReferencer.php
+%%WWWDIR%%/include/classes/class.cformlist.php
+%%WWWDIR%%/include/classes/class.cicon.php
+%%WWWDIR%%/include/classes/class.frontendsetup.php
+%%WWWDIR%%/include/classes/class.ctweenbox.php
+%%WWWDIR%%/include/classes/class.cvisibilitybox.php
+%%WWWDIR%%/include/classes/class.chelp.php
+%%WWWDIR%%/include/classes/class.cspan.php
+%%WWWDIR%%/include/classes/class.cconfigfile.php
+%%WWWDIR%%/include/classes/class.cbutton.php
+%%WWWDIR%%/include/classes/tree/CServiceTree.php
+%%WWWDIR%%/include/classes/tree/CTree.php
+%%WWWDIR%%/include/classes/class.ctriggersinfo.php
+%%WWWDIR%%/include/classes/export/CConfigurationExport.php
+%%WWWDIR%%/include/classes/export/CConfigurationExportBuilder.php
+%%WWWDIR%%/include/classes/export/writers/CExportWriterFactory.php
+%%WWWDIR%%/include/classes/export/writers/CExportWriter.php
+%%WWWDIR%%/include/classes/export/writers/CJsonExportWriter.php
+%%WWWDIR%%/include/classes/export/writers/CXmlExportWriter.php
+%%WWWDIR%%/include/classes/debug/CProfiler.php
+%%WWWDIR%%/include/classes/class.cimg.php
+%%WWWDIR%%/include/classes/class.cldap.php
+%%WWWDIR%%/include/classes/api/API.php
+%%WWWDIR%%/include/classes/api/APIException.php
+%%WWWDIR%%/include/classes/api/CAPIObject.php
+%%WWWDIR%%/include/classes/api/CZBXAPI.php
+%%WWWDIR%%/include/classes/api/CRelationMap.php
+%%WWWDIR%%/include/classes/class.cwidget.php
+%%WWWDIR%%/include/classes/class.crow.php
+%%WWWDIR%%/include/classes/class.cbuttondelete.php
+%%WWWDIR%%/include/classes/class.cserverinfo.php
+%%WWWDIR%%/include/classes/class.cformtable.php
+%%WWWDIR%%/include/classes/class.ccombobox.php
+%%WWWDIR%%/include/classes/class.ciframe.php
+%%WWWDIR%%/include/classes/class.cparam.php
+%%WWWDIR%%/include/classes/class.ccomboitem.php
+%%WWWDIR%%/include/classes/class.cflash.php
+%%WWWDIR%%/include/classes/class.careamap.php
+%%WWWDIR%%/include/classes/class.ceditablecombobox.php
+%%WWWDIR%%/include/classes/class.cflashclock.php
+%%WWWDIR%%/include/classes/core/Z.php
+%%WWWDIR%%/include/classes/core/CAutoloader.php
+%%WWWDIR%%/include/classes/core/ZBase.php
+%%WWWDIR%%/include/classes/core/CSession.php
+%%WWWDIR%%/include/classes/core/CFactoryRegistry.php
+%%WWWDIR%%/include/classes/core/ConfigFileException.php
+%%WWWDIR%%/include/classes/core/Manager.php
+%%WWWDIR%%/include/classes/class.cpagefilter.php
+%%WWWDIR%%/include/classes/class.ctabview.php
+%%WWWDIR%%/include/classes/class.cwarning.php
+%%WWWDIR%%/include/classes/class.cjson.php
+%%WWWDIR%%/include/classes/class.csubmit.php
+%%WWWDIR%%/include/classes/class.cnumericbox.php
+%%WWWDIR%%/include/classes/class.clist.php
+%%WWWDIR%%/include/classes/class.ccheckbox.php
+%%WWWDIR%%/include/classes/class.globalregexp.php
+%%WWWDIR%%/include/classes/class.clistbox.php
+%%WWWDIR%%/include/classes/class.chostsinfo.php
+%%WWWDIR%%/include/classes/class.ccolorcell.php
+%%WWWDIR%%/include/classes/class.cobject.php
+%%WWWDIR%%/include/classes/class.clink.php
+%%WWWDIR%%/include/classes/class.carea.php
+%%WWWDIR%%/include/classes/class.clabel.php
+%%WWWDIR%%/include/classes/class.cbuttonqmessage.php
+%%WWWDIR%%/include/classes/sysmaps/CMapPainter.php
+%%WWWDIR%%/include/classes/sysmaps/CCanvas.php
+%%WWWDIR%%/include/classes/class.ccol.php
+%%WWWDIR%%/include/classes/class.ctag.php
+%%WWWDIR%%/include/classes/class.chttp_request.php
+%%WWWDIR%%/include/classes/class.cuiwidget.php
+%%WWWDIR%%/include/classes/class.cinput.php
+%%WWWDIR%%/include/classes/class.cwebuser.php
+%%WWWDIR%%/include/classes/class.cjsscript.php
+%%WWWDIR%%/include/classes/class.cradiobuttonlist.php
+%%WWWDIR%%/include/classes/class.curl.php
+%%WWWDIR%%/include/classes/class.cform.php
+%%WWWDIR%%/include/classes/class.cbuttoncancel.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/class.ccolor.php
+%%WWWDIR%%/include/classes/class.cradiobutton.php
+%%WWWDIR%%/include/classes/class.ajaxresponse.php
+%%WWWDIR%%/include/classes/class.ctable.php
+%%WWWDIR%%/include/classes/class.ctableinfo.php
+%%WWWDIR%%/include/classes/class.cdiv.php
+%%WWWDIR%%/include/classes/class.cflashembed.php
+%%WWWDIR%%/include/classes/helpers/CJs.php
+%%WWWDIR%%/include/classes/helpers/CUploadFile.php
+%%WWWDIR%%/include/classes/helpers/CHtml.php
+%%WWWDIR%%/include/classes/helpers/CArrayHelper.php
+%%WWWDIR%%/include/classes/validators/CValidator.php
+%%WWWDIR%%/include/classes/validators/CTimePeriodValidator.php
+%%WWWDIR%%/include/classes/validators/CTriggerFunctionValidator.php
+%%WWWDIR%%/include/classes/validators/CCollectionValidator.php
+%%WWWDIR%%/include/classes/validators/CColorValidator.php
+%%WWWDIR%%/include/classes/validators/CIdValidator.php
+%%WWWDIR%%/include/classes/validators/CLdapAuthValidator.php
+%%WWWDIR%%/include/classes/validators/CPartialValidatorInterface.php
+%%WWWDIR%%/include/classes/validators/CSetValidator.php
+%%WWWDIR%%/include/classes/validators/schema/CPartialSchemaValidator.php
+%%WWWDIR%%/include/classes/validators/schema/CSchemaValidator.php
+%%WWWDIR%%/include/classes/validators/hostgroup/CHostGroupNormalValidator.php
+%%WWWDIR%%/include/classes/validators/event/CEventSourceObjectValidator.php
+%%WWWDIR%%/include/classes/validators/host/CHostNormalValidator.php
+%%WWWDIR%%/include/classes/validators/string/CStringValidator.php
+%%WWWDIR%%/include/classes/validators/string/CLldMacroStringValidator.php
+%%WWWDIR%%/include/classes/validators/object/CUpdateDiscoveredValidator.php
+%%WWWDIR%%/include/classes/class.cimagetexttable.php
+%%WWWDIR%%/include/classes/class.cpassbox.php
+%%WWWDIR%%/include/classes/class.cfile.php
+%%WWWDIR%%/include/classes/class.clistitem.php
+%%WWWDIR%%/include/classes/class.cvar.php
+%%WWWDIR%%/include/classes/class.ctextarea.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/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/parsers/CTriggerExpression.php
+%%WWWDIR%%/include/classes/html/CButtonPopup.php
+%%WWWDIR%%/include/classes/html/CPageHeader.php
+%%WWWDIR%%/include/classes/items/CHelpItems.php
+%%WWWDIR%%/include/classes/macros/CMacrosResolver.php
+%%WWWDIR%%/include/classes/macros/CMacrosResolverHelper.php
+%%WWWDIR%%/include/classes/class.cfavorite.php
+%%WWWDIR%%/include/classes/class.cmultiselect.php
+%%WWWDIR%%/include/classes/class.cseverity.php
+%%WWWDIR%%/include/classes/class.cstringparser.php
+%%WWWDIR%%/include/sounds.inc.php
+%%WWWDIR%%/include/ident.inc.php
+%%WWWDIR%%/include/regexp.inc.php
+%%WWWDIR%%/include/maps.inc.php
+%%WWWDIR%%/include/services.inc.php
+%%WWWDIR%%/include/graphs.inc.php
+%%WWWDIR%%/include/page_footer.php
+%%WWWDIR%%/include/gettextwrapper.inc.php
+%%WWWDIR%%/include/acknow.inc.php
+%%WWWDIR%%/include/blocks.inc.php
+%%WWWDIR%%/include/.htaccess
+%%WWWDIR%%/include/items.inc.php
+%%WWWDIR%%/include/httptest.inc.php
+%%WWWDIR%%/include/js.inc.php
+%%WWWDIR%%/include/setup.inc.php
+%%WWWDIR%%/include/reports.inc.php
+%%WWWDIR%%/include/valuemap.inc.php
+%%WWWDIR%%/include/menu.inc.php
+%%WWWDIR%%/include/db.inc.php
+%%WWWDIR%%/include/validate.inc.php
+%%WWWDIR%%/include/audit.inc.php
+%%WWWDIR%%/include/page_header.php
+%%WWWDIR%%/include/discovery.inc.php
+%%WWWDIR%%/include/media.inc.php
+%%WWWDIR%%/include/users.inc.php
+%%WWWDIR%%/include/events.inc.php
+%%WWWDIR%%/include/images.inc.php
+%%WWWDIR%%/include/screens.inc.php
+%%WWWDIR%%/include/forms.inc.php
+%%WWWDIR%%/include/maintenances.inc.php
+%%WWWDIR%%/include/html.inc.php
+%%WWWDIR%%/include/debug.inc.php
+%%WWWDIR%%/include/func.inc.php
+%%WWWDIR%%/include/config.inc.php
+%%WWWDIR%%/include/nodes.inc.php
+%%WWWDIR%%/chart.php
+%%WWWDIR%%/adm.iconmapping.php
+%%WWWDIR%%/authentication.php
+%%WWWDIR%%/adm.images.php
+%%WWWDIR%%/report3.php
+%%WWWDIR%%/report4.php
+%%WWWDIR%%/overview.php
+%%WWWDIR%%/tr_events.php
+%%WWWDIR%%/search.php
+%%WWWDIR%%/actionconf.php
+%%WWWDIR%%/setup.php
+%%WWWDIR%%/map.php
+%%WWWDIR%%/maps.php
+%%WWWDIR%%/index.php
+%%WWWDIR%%/adm.macros.php
+%%WWWDIR%%/httpmon.php
+%%WWWDIR%%/chart_bar.php
+%%WWWDIR%%/popup_usrgrp.php
+%%WWWDIR%%/hostinventories.php
+%%WWWDIR%%/api_jsonrpc.php
+%%WWWDIR%%/tr_comments.php
+%%WWWDIR%%/api/rpc/class.cjsonrpc.php
+%%WWWDIR%%/api/rpc/class.czbxrpc.php
+%%WWWDIR%%/api/classes/CHost.php
+%%WWWDIR%%/api/classes/CMap.php
+%%WWWDIR%%/api/classes/CDCheck.php
+%%WWWDIR%%/api/classes/CScreen.php
+%%WWWDIR%%/api/classes/CUserMacro.php
+%%WWWDIR%%/api/classes/CScreenItem.php
+%%WWWDIR%%/api/classes/CImage.php
+%%WWWDIR%%/api/classes/CTriggerGeneral.php
+%%WWWDIR%%/api/classes/CHostGroup.php
+%%WWWDIR%%/api/classes/CItemPrototype.php
+%%WWWDIR%%/api/classes/CMaintenance.php
+%%WWWDIR%%/api/classes/CItemGeneral.php
+%%WWWDIR%%/api/classes/CGraph.php
+%%WWWDIR%%/api/classes/CGraphGeneral.php
+%%WWWDIR%%/api/classes/CTrigger.php
+%%WWWDIR%%/api/classes/CHistory.php
+%%WWWDIR%%/api/classes/CHostInterface.php
+%%WWWDIR%%/api/classes/CUserMedia.php
+%%WWWDIR%%/api/classes/CProxy.php
+%%WWWDIR%%/api/classes/CAction.php
+%%WWWDIR%%/api/classes/CTriggerPrototype.php
+%%WWWDIR%%/api/classes/CScript.php
+%%WWWDIR%%/api/classes/CItemKey.php
+%%WWWDIR%%/api/classes/CDService.php
+%%WWWDIR%%/api/classes/CMediatype.php
+%%WWWDIR%%/api/classes/CMapElement.php
+%%WWWDIR%%/api/classes/CItem.php
+%%WWWDIR%%/api/classes/CAPIInfo.php
+%%WWWDIR%%/api/classes/CGraphItem.php
+%%WWWDIR%%/api/classes/CAlert.php
+%%WWWDIR%%/api/classes/CDRule.php
+%%WWWDIR%%/api/classes/CTemplateScreen.php
+%%WWWDIR%%/api/classes/CApplication.php
+%%WWWDIR%%/api/classes/CUserGroup.php
+%%WWWDIR%%/api/classes/CDiscoveryRule.php
+%%WWWDIR%%/api/classes/CDHost.php
+%%WWWDIR%%/api/classes/CUser.php
+%%WWWDIR%%/api/classes/CIconMap.php
+%%WWWDIR%%/api/classes/CEvent.php
+%%WWWDIR%%/api/classes/CGraphPrototype.php
+%%WWWDIR%%/api/classes/CConfiguration.php
+%%WWWDIR%%/api/classes/CService.php
+%%WWWDIR%%/api/classes/CTemplate.php
+%%WWWDIR%%/api/classes/CHostGeneral.php
+%%WWWDIR%%/api/classes/CTemplateScreenItem.php
+%%WWWDIR%%/api/classes/CHostBase.php
+%%WWWDIR%%/api/classes/CHostPrototype.php
+%%WWWDIR%%/api/classes/CHttpTest.php
+%%WWWDIR%%/api/classes/managers/CApplicationManager.php
+%%WWWDIR%%/api/classes/managers/CHistoryManager.php
+%%WWWDIR%%/api/classes/managers/CHttpTestManager.php
+%%WWWDIR%%/api/.htaccess
+%%WWWDIR%%/triggers.php
+%%WWWDIR%%/slideconf.php
+%%WWWDIR%%/adm.valuemapping.php
+%%WWWDIR%%/popup_media.php
+%%WWWDIR%%/images/sysmaps/Printer.png
+%%WWWDIR%%/images/sysmaps/UPS_small.png
+%%WWWDIR%%/images/sysmaps/Server_small.png
+%%WWWDIR%%/images/sysmaps/Router.png
+%%WWWDIR%%/images/sysmaps/Network.png
+%%WWWDIR%%/images/sysmaps/Phone.png
+%%WWWDIR%%/images/sysmaps/Workstation.png
+%%WWWDIR%%/images/sysmaps/Notebook_small.png
+%%WWWDIR%%/images/sysmaps/Notebook.png
+%%WWWDIR%%/images/sysmaps/Network_small.png
+%%WWWDIR%%/images/sysmaps/Satellite.png
+%%WWWDIR%%/images/sysmaps/README
+%%WWWDIR%%/images/sysmaps/Server.png
+%%WWWDIR%%/images/sysmaps/UPS.png
+%%WWWDIR%%/images/sysmaps/Phone_small.png
+%%WWWDIR%%/images/sysmaps/Printer_small.png
+%%WWWDIR%%/images/sysmaps/Workstation_small.png
+%%WWWDIR%%/images/sysmaps/Hub.png
+%%WWWDIR%%/images/sysmaps/Router_small.png
+%%WWWDIR%%/images/sysmaps/Satellite_small.png
+%%WWWDIR%%/images/sysmaps/Hub_small.png
+%%WWWDIR%%/images/sysmaps/old/Workstation.png
+%%WWWDIR%%/images/sysmaps/old/Hub.png
+%%WWWDIR%%/images/sysmaps/old/Router.png
+%%WWWDIR%%/images/sysmaps/old/Server.png
+%%WWWDIR%%/images/sysmaps/old/Notebook.png
+%%WWWDIR%%/images/sysmaps/old/Printer.png
+%%WWWDIR%%/images/flash/zbxclock.swf
+%%WWWDIR%%/images/gradients/table_head2_bb.gif
+%%WWWDIR%%/images/gradients/sla_red15.png
+%%WWWDIR%%/images/gradients/sla_red.png
+%%WWWDIR%%/images/gradients/sla_green15.png
+%%WWWDIR%%/images/gradients/sla_blue15.png
+%%WWWDIR%%/images/gradients/menu_not_active.gif
+%%WWWDIR%%/images/gradients/sla_blue.png
+%%WWWDIR%%/images/gradients/button.gif
+%%WWWDIR%%/images/gradients/header_link_blue.png
+%%WWWDIR%%/images/gradients/header_footer_blue.png
+%%WWWDIR%%/images/gradients/menu_not_active2.gif
+%%WWWDIR%%/images/gradients/gradient.png
+%%WWWDIR%%/images/gradients/menu_not_active_blue.png
+%%WWWDIR%%/images/gradients/table_head_bb.gif
+%%WWWDIR%%/images/gradients/sla_green.png
+%%WWWDIR%%/images/gradients/menu_not_active_bb.gif
+%%WWWDIR%%/images/general/multiselect.png
+%%WWWDIR%%/images/general/ipmi_unknown.png
+%%WWWDIR%%/images/general/jmx_unknown.png
+%%WWWDIR%%/images/general/ipmi_available.png
+%%WWWDIR%%/images/general/transparent.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/ok_icon_bb.png
+%%WWWDIR%%/images/general/zabbix.png
+%%WWWDIR%%/images/general/dbl_arrow_up.png
+%%WWWDIR%%/images/general/tree/zero.gif
+%%WWWDIR%%/images/general/tree/plus.gif
+%%WWWDIR%%/images/general/tree/pointl.gif
+%%WWWDIR%%/images/general/tree/point.gif
+%%WWWDIR%%/images/general/tree/pointc.gif
+%%WWWDIR%%/images/general/tree/minus.gif
+%%WWWDIR%%/images/general/ok_icon.png
+%%WWWDIR%%/images/general/snmp_available.png
+%%WWWDIR%%/images/general/zabbix_unavailable.png
+%%WWWDIR%%/images/general/snmp_unavailable.png
+%%WWWDIR%%/images/general/browserwarning/background.png
+%%WWWDIR%%/images/general/browserwarning/ie.png
+%%WWWDIR%%/images/general/browserwarning/firefox.png
+%%WWWDIR%%/images/general/browserwarning/opera.png
+%%WWWDIR%%/images/general/browserwarning/safari.png
+%%WWWDIR%%/images/general/browserwarning/chrome.png
+%%WWWDIR%%/images/general/zabbix_available.png
+%%WWWDIR%%/images/general/zabbix_available_bb.png
+%%WWWDIR%%/images/general/ipmi_unavailable.png
+%%WWWDIR%%/images/general/bttn/minus.png
+%%WWWDIR%%/images/general/bttn/fullscreen.png
+%%WWWDIR%%/images/general/bttn/move.png
+%%WWWDIR%%/images/general/bttn/arrowright.png
+%%WWWDIR%%/images/general/bttn/menu.png
+%%WWWDIR%%/images/general/bttn/close.png
+%%WWWDIR%%/images/general/bttn/config_hl.png
+%%WWWDIR%%/images/general/bttn/config.png
+%%WWWDIR%%/images/general/bttn/snooze.png
+%%WWWDIR%%/images/general/bttn/up.png
+%%WWWDIR%%/images/general/bttn/arrowup.png
+%%WWWDIR%%/images/general/bttn/reset.png
+%%WWWDIR%%/images/general/bttn/arrowdown.png
+%%WWWDIR%%/images/general/bttn/mute.png
+%%WWWDIR%%/images/general/bttn/sound.png
+%%WWWDIR%%/images/general/bttn/arrowleft.png
+%%WWWDIR%%/images/general/bttn/plus.png
+%%WWWDIR%%/images/general/bttn/down.png
+%%WWWDIR%%/images/general/bttn/help.png
+%%WWWDIR%%/images/general/zabbix_od.png
+%%WWWDIR%%/images/general/zabbix_bb.png
+%%WWWDIR%%/images/general/jmx_available_bb.png
+%%WWWDIR%%/images/general/snmp_unknown.png
+%%WWWDIR%%/images/general/ok.png
+%%WWWDIR%%/images/general/ok_bb.png
+%%WWWDIR%%/images/general/zabbix_bb.ico
+%%WWWDIR%%/images/general/setup/welcome_screen.png
+%%WWWDIR%%/images/general/setup/background.png
+%%WWWDIR%%/images/general/zabbix_unknown.png
+%%WWWDIR%%/images/general/chart.png
+%%WWWDIR%%/images/general/dbl_arrow_up2.png
+%%WWWDIR%%/images/general/tick.png
+%%WWWDIR%%/images/general/snmp_available_bb.png
+%%WWWDIR%%/images/general/jmx_unavailable.png
+%%WWWDIR%%/images/general/login/logo.png
+%%WWWDIR%%/images/general/login/background.png
+%%WWWDIR%%/images/general/login/glow.png
+%%WWWDIR%%/images/general/ipmi_available_bb.png
+%%WWWDIR%%/images/general/unknown_icon.png
+%%WWWDIR%%/images/general/zabbix.ico
+%%WWWDIR%%/images/general/jmx_available.png
+%%WWWDIR%%/images/general/zabbix_ob.ico
+%%WWWDIR%%/images/general/error.png
+%%WWWDIR%%/images/general/no_icon.png
+%%WWWDIR%%/images/general/bar/arrow_down.gif
+%%WWWDIR%%/images/general/bar/bar_bg.png
+%%WWWDIR%%/images/general/bar/left_arr.png
+%%WWWDIR%%/images/general/bar/bar_middle.png
+%%WWWDIR%%/images/general/bar/right.png
+%%WWWDIR%%/images/general/bar/arrow_sm.gif
+%%WWWDIR%%/images/general/bar/bg.png
+%%WWWDIR%%/images/general/bar/cal.gif
+%%WWWDIR%%/images/general/bar/right_arr.png
+%%WWWDIR%%/images/general/bar/arrow_up.gif
+%%WWWDIR%%/images/general/bar/left.png
+%%WWWDIR%%/images/general/dbl_arrow_down.png
+%%WWWDIR%%/images/general/dbl_arrow_down2.png
+%%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/error2.png
+%%WWWDIR%%/images/general/error3.png
+%%WWWDIR%%/images/general/minus.png
+%%WWWDIR%%/images/general/plus.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/warning.png
+%%WWWDIR%%/images/general/warning2.png
+%%WWWDIR%%/images/general/wrench12transp.png
+%%WWWDIR%%/images/general/zero.png
+%%WWWDIR%%/chart7.php
+%%WWWDIR%%/applications.php
+%%WWWDIR%%/scripts_exec.php
+%%WWWDIR%%/screens.php
+%%WWWDIR%%/sysmaps.php
+%%WWWDIR%%/host_discovery.php
+%%WWWDIR%%/dashconf.php
+%%WWWDIR%%/acknow.php
+%%WWWDIR%%/screenedit.php
+%%WWWDIR%%/templates.php
+%%WWWDIR%%/queue.php
+%%WWWDIR%%/history.php
+%%WWWDIR%%/charts.php
+%%WWWDIR%%/chart4.php
+%%WWWDIR%%/chart3.php
+%%WWWDIR%%/tr_testexpr.php
+%%WWWDIR%%/host_screen.php
+%%WWWDIR%%/browserwarning.php
+%%WWWDIR%%/adm.triggerseverities.php
+%%WWWDIR%%/imgstore.php
+%%WWWDIR%%/usergrps.php
+%%WWWDIR%%/adm.other.php
+%%WWWDIR%%/nodes.php
+%%WWWDIR%%/conf.import.php
+%%WWWDIR%%/screenconf.php
+%%WWWDIR%%/graphs.php
+%%WWWDIR%%/adm.housekeeper.php
+%%WWWDIR%%/popup_httpstep.php
+%%WWWDIR%%/image.php
+%%WWWDIR%%/locale/en_US/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/en_US/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/hu/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/hu/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/pl/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/pl/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/update_po.sh
+%%WWWDIR%%/locale/es/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/es/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/README
+%%WWWDIR%%/locale/cs/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/cs/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/fa/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/fa/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/fi/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/fi/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/fr/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/fr/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/nl/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/nl/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/uk/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/uk/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/de/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/de/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/make_mo.sh
+%%WWWDIR%%/locale/ja/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/ja/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/el/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/el/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/lv/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/lv/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/ko/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/ko/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/sv/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/sv/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/ru/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/ru/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/id/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/id/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/it/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/it/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/tr/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/tr/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/sk/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/sk/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/bg/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/bg/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/lt/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/lt/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/ro/LC_MESSAGES/frontend.po
+%%WWWDIR%%/locale/ro/LC_MESSAGES/frontend.mo
+%%WWWDIR%%/locale/add_new_language.sh
+%%WWWDIR%%/conf/zabbix.conf.php.example
+%%WWWDIR%%/conf/maintenance.inc.php
+%%WWWDIR%%/conf/.htaccess
+%%WWWDIR%%/users.php
+%%WWWDIR%%/httpdetails.php
+%%WWWDIR%%/services.php
+%%WWWDIR%%/popup.php
+%%WWWDIR%%/tr_status.php
+%%WWWDIR%%/js/class.calendar.js
+%%WWWDIR%%/js/class.cmessages.js
+%%WWWDIR%%/js/class.rpc.js
+%%WWWDIR%%/js/browsers.js
+%%WWWDIR%%/js/class.cookie.js
+%%WWWDIR%%/js/class.csuggest.js
+%%WWWDIR%%/js/class.cdate.js
+%%WWWDIR%%/js/class.pmaster.js
+%%WWWDIR%%/js/main.js
+%%WWWDIR%%/js/jquery/jquery.js
+%%WWWDIR%%/js/jquery/jquery-ui.js
+%%WWWDIR%%/js/class.cmap.js
+%%WWWDIR%%/js/prototype.js
+%%WWWDIR%%/js/gtlc.js
+%%WWWDIR%%/js/class.cswitcher.js
+%%WWWDIR%%/js/class.curl.js
+%%WWWDIR%%/js/class.ctree.js
+%%WWWDIR%%/js/class.cviewswitcher.js
+%%WWWDIR%%/js/class.bbcode.js
+%%WWWDIR%%/js/class.cscreen.js
+%%WWWDIR%%/js/init.js
+%%WWWDIR%%/js/menu.js
+%%WWWDIR%%/js/functions.js
+%%WWWDIR%%/js/flickerfreescreen.js
+%%WWWDIR%%/js/common.js
+%%WWWDIR%%/js/class.cdebug.js
+%%WWWDIR%%/js/servercheck.js
+%%WWWDIR%%/js/menupopup.js
+%%WWWDIR%%/js/multiselect.js
+%%WWWDIR%%/js/vendors/activity-indicator.js
+%%WWWDIR%%/popup_trexpr.php
+%%WWWDIR%%/chart2.php
+%%WWWDIR%%/items.php
+%%WWWDIR%%/chart5.php
+%%WWWDIR%%/adm.regexps.php
+%%WWWDIR%%/proxies.php
+%%WWWDIR%%/scripts.php
+%%WWWDIR%%/fonts/DejaVuSans.ttf
+%%WWWDIR%%/maintenance.php
+%%WWWDIR%%/styles/handheld.css
+%%WWWDIR%%/styles/default.css
+%%WWWDIR%%/styles/icon.css
+%%WWWDIR%%/styles/pages.css
+%%WWWDIR%%/styles/print.css
+%%WWWDIR%%/styles/themes/classic/jquery-ui.css
+%%WWWDIR%%/styles/themes/classic/main.css
+%%WWWDIR%%/styles/themes/classic/images/icons_469bdd.png
+%%WWWDIR%%/styles/themes/classic/images/menu_not_active2.gif
+%%WWWDIR%%/styles/themes/classic/images/bg_flat_0_c9c9c9.png
+%%WWWDIR%%/styles/themes/classic/images/icons_5481ab.png
+%%WWWDIR%%/styles/themes/classic/images/bg_i-hard_100.png
+%%WWWDIR%%/styles/themes/classic/images/bg_flat_0_999999.png
+%%WWWDIR%%/styles/themes/classic/images/widget_header.gif
+%%WWWDIR%%/styles/themes/classic/images/bg_h-hard_55.gif
+%%WWWDIR%%/styles/themes/classic/images/icons_456582.png
+%%WWWDIR%%/styles/themes/classic/images/icons_ffffff.png
+%%WWWDIR%%/styles/themes/classic/images/bg_h-hard_75.png
+%%WWWDIR%%/styles/themes/classic/images/preloader.gif
+%%WWWDIR%%/styles/themes/classic/images/bg_flat_100_fffce3.png
+%%WWWDIR%%/styles/themes/classic/images/bg_flat_100_fef1ec.png
+%%WWWDIR%%/styles/themes/classic/images/icons_d40000.png
+%%WWWDIR%%/styles/themes/classic/images/bg_flat_100_ffffff.png
+%%WWWDIR%%/styles/themes/classic/images/bg_h-hard_85.png
+%%WWWDIR%%/styles/themes/darkorange/jquery-ui.css
+%%WWWDIR%%/styles/themes/darkorange/main.css
+%%WWWDIR%%/styles/themes/darkorange/images/icons_a83300.png
+%%WWWDIR%%/styles/themes/darkorange/images/bg_h-hard_30.png
+%%WWWDIR%%/styles/themes/darkorange/images/bg_g_40_2f2f2f.png
+%%WWWDIR%%/styles/themes/darkorange/images/bg_flat_50.png
+%%WWWDIR%%/styles/themes/darkorange/images/icons_000000.png
+%%WWWDIR%%/styles/themes/darkorange/images/bg_flat_25.png
+%%WWWDIR%%/styles/themes/darkorange/images/icons_ff5500.png
+%%WWWDIR%%/styles/themes/darkorange/images/bg_g_40_ffc73d.png
+%%WWWDIR%%/styles/themes/darkorange/images/bg_flat_30.png
+%%WWWDIR%%/styles/themes/darkorange/images/bg_h-soft_80.png
+%%WWWDIR%%/styles/themes/darkorange/images/preloader.gif
+%%WWWDIR%%/styles/themes/darkorange/images/icons_dfdfdf.png
+%%WWWDIR%%/styles/themes/darkorange/images/bg_g_40_ff5500.png
+%%WWWDIR%%/styles/themes/darkblue/jquery-ui.css
+%%WWWDIR%%/styles/themes/darkblue/main.css
+%%WWWDIR%%/styles/themes/darkblue/images/preloader.gif
+%%WWWDIR%%/styles/themes/darkblue/images/bg_i-soft_25.png
+%%WWWDIR%%/styles/themes/darkblue/images/bg_flat_100.png
+%%WWWDIR%%/styles/themes/darkblue/images/bg_i-hard_40.png
+%%WWWDIR%%/styles/themes/darkblue/images/bg_flat_10.png
+%%WWWDIR%%/styles/themes/darkblue/images/icons_ffffff.png
+%%WWWDIR%%/styles/themes/darkblue/images/bg_h-hard_40.png
+%%WWWDIR%%/styles/themes/darkblue/images/bg_flat_30.png
+%%WWWDIR%%/styles/themes/darkblue/images/bg_h-hard_25.png
+%%WWWDIR%%/styles/themes/darkblue/images/icons_77b7da.png
+%%WWWDIR%%/styles/themes/darkblue/images/bg_flat_0.png
+%%WWWDIR%%/styles/themes/originalblue/jquery-ui.css
+%%WWWDIR%%/styles/themes/originalblue/images/bg_flat_0_c9c9c9.png
+%%WWWDIR%%/styles/themes/originalblue/images/bg_flat_100_ffffff.png
+%%WWWDIR%%/styles/themes/originalblue/images/bg_flat_100_fffce3.png
+%%WWWDIR%%/styles/themes/originalblue/images/bg_flat_100_fef1ec.png
+%%WWWDIR%%/styles/themes/originalblue/images/bg_h-hard_55.png
+%%WWWDIR%%/styles/themes/originalblue/images/preloader.gif
+%%WWWDIR%%/styles/themes/originalblue/images/icons_d40000.png
+%%WWWDIR%%/styles/themes/originalblue/images/bg_i-hard_100.png
+%%WWWDIR%%/styles/themes/originalblue/images/bg_flat_0_999999.png
+%%WWWDIR%%/styles/themes/originalblue/images/bg_h-hard_85.png
+%%WWWDIR%%/styles/themes/originalblue/images/icons_469bdd.png
+%%WWWDIR%%/styles/themes/originalblue/images/icons_5481ab.png
+%%WWWDIR%%/styles/themes/originalblue/images/bg_h-hard_75.png
+%%WWWDIR%%/styles/themes/originalblue/images/icons_456582.png
+%%WWWDIR%%/styles/themes/originalblue/images/icons_ffffff.png
+%%WWWDIR%%/styles/themes/originalblue/main.css
+%%WWWDIR%%/styles/blocks.css
+%%WWWDIR%%/styles/ie.css
+%%WWWDIR%%/styles/color.css
+%%WWWDIR%%/styles/screen.css
+%%WWWDIR%%/report1.php
+%%WWWDIR%%/events.php
+%%WWWDIR%%/tr_logform.php
+%%WWWDIR%%/auditlogs.php
+%%WWWDIR%%/report6.php
+@dirrm %%WWWDIR%%/audio
+@dirrm %%WWWDIR%%/include/views/js
+@dirrm %%WWWDIR%%/include/views
+@dirrm %%WWWDIR%%/include/classes/graphdraw/
+@dirrm %%WWWDIR%%/include/classes/import/formatters
+@dirrm %%WWWDIR%%/include/classes/import/readers
+@dirrm %%WWWDIR%%/include/classes/import/importers
+@dirrm %%WWWDIR%%/include/classes/import
+@dirrm %%WWWDIR%%/include/classes/tree
+@dirrm %%WWWDIR%%/include/classes/export/writers
+@dirrm %%WWWDIR%%/include/classes/export
+@dirrm %%WWWDIR%%/include/classes/debug
+@dirrm %%WWWDIR%%/include/classes/api
+@dirrm %%WWWDIR%%/include/classes/core
+@dirrm %%WWWDIR%%/include/classes/sysmaps
+@dirrm %%WWWDIR%%/include/classes/db
+@dirrm %%WWWDIR%%/include/classes/helpers
+@dirrm %%WWWDIR%%/include/classes/screens
+@dirrm %%WWWDIR%%/include/classes/parsers
+@dirrm %%WWWDIR%%/include/classes/html
+@dirrm %%WWWDIR%%/include/classes/items
+@dirrm %%WWWDIR%%/include/classes/macros
+@dirrm %%WWWDIR%%/include/classes/server
+@dirrm %%WWWDIR%%/include/classes/validators/schema
+@dirrm %%WWWDIR%%/include/classes/validators/hostgroup
+@dirrm %%WWWDIR%%/include/classes/validators/event
+@dirrm %%WWWDIR%%/include/classes/validators/host
+@dirrm %%WWWDIR%%/include/classes/validators/string
+@dirrm %%WWWDIR%%/include/classes/validators/object
+@dirrm %%WWWDIR%%/include/classes/validators/
+@dirrm %%WWWDIR%%/include/classes
+@dirrm %%WWWDIR%%/include
+@dirrm %%WWWDIR%%/api/rpc
+@dirrm %%WWWDIR%%/api/classes/managers
+@dirrm %%WWWDIR%%/api/classes
+@dirrm %%WWWDIR%%/api
+@dirrm %%WWWDIR%%/images/sysmaps/old
+@dirrm %%WWWDIR%%/images/sysmaps
+@dirrm %%WWWDIR%%/images/flash
+@dirrm %%WWWDIR%%/images/gradients
+@dirrm %%WWWDIR%%/images/general/tree
+@dirrm %%WWWDIR%%/images/general/browserwarning
+@dirrm %%WWWDIR%%/images/general/bttn
+@dirrm %%WWWDIR%%/images/general/setup
+@dirrm %%WWWDIR%%/images/general/login
+@dirrm %%WWWDIR%%/images/general/bar
+@dirrm %%WWWDIR%%/images/general
+@dirrm %%WWWDIR%%/images
+@dirrm %%WWWDIR%%/locale/hu/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/hu
+@dirrm %%WWWDIR%%/locale/pt_BR/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/pt_BR
+@dirrm %%WWWDIR%%/locale/pt_PT/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/pt_PT
+@dirrm %%WWWDIR%%/locale/pl/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/pl
+@dirrm %%WWWDIR%%/locale/es/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/es
+@dirrm %%WWWDIR%%/locale/cs/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/cs
+@dirrm %%WWWDIR%%/locale/fa/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/fa
+@dirrm %%WWWDIR%%/locale/fi/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/fi
+@dirrm %%WWWDIR%%/locale/fr/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/fr
+@dirrm %%WWWDIR%%/locale/nl/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/nl
+@dirrm %%WWWDIR%%/locale/uk/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/uk
+@dirrm %%WWWDIR%%/locale/de/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/de
+@dirrm %%WWWDIR%%/locale/ja/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/ja
+@dirrm %%WWWDIR%%/locale/zh_TW/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/zh_TW
+@dirrm %%WWWDIR%%/locale/el/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/el
+@dirrm %%WWWDIR%%/locale/lv/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/lv
+@dirrm %%WWWDIR%%/locale/ko/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/ko
+@dirrm %%WWWDIR%%/locale/sv/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/sv
+@dirrm %%WWWDIR%%/locale/zh_CN/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/zh_CN
+@dirrm %%WWWDIR%%/locale/ru/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/ru
+@dirrm %%WWWDIR%%/locale/id/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/id
+@dirrm %%WWWDIR%%/locale/it/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/it
+@dirrm %%WWWDIR%%/locale/tr/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/tr
+@dirrm %%WWWDIR%%/locale/sk/LC_MESSAGES
+@dirrm %%WWWDIR%%/locale/sk
+@dirrm %%WWWDIR%%/locale/en_US/LC_MESSAGES/
+@dirrm %%WWWDIR%%/locale/en_US/
+@dirrm %%WWWDIR%%/locale/bg/LC_MESSAGES/
+@dirrm %%WWWDIR%%/locale/bg/
+@dirrm %%WWWDIR%%/locale/lt/LC_MESSAGES/
+@dirrm %%WWWDIR%%/locale/lt/
+@dirrm %%WWWDIR%%/locale/ro/LC_MESSAGES/
+@dirrm %%WWWDIR%%/locale/ro/
+@dirrm %%WWWDIR%%/locale
+@dirrm %%WWWDIR%%/conf
+@dirrm %%WWWDIR%%/js/jquery
+@dirrm %%WWWDIR%%/js/vendors
+@dirrm %%WWWDIR%%/js
+@dirrm %%WWWDIR%%/fonts
+@dirrm %%WWWDIR%%/styles/themes/classic/images
+@dirrm %%WWWDIR%%/styles/themes/classic
+@dirrm %%WWWDIR%%/styles/themes/darkorange/images
+@dirrm %%WWWDIR%%/styles/themes/darkorange
+@dirrm %%WWWDIR%%/styles/themes/darkblue/images
+@dirrm %%WWWDIR%%/styles/themes/darkblue
+@dirrm %%WWWDIR%%/styles/themes/originalblue/images
+@dirrm %%WWWDIR%%/styles/themes/originalblue
+@dirrm %%WWWDIR%%/styles/themes
+@dirrm %%WWWDIR%%/styles
+@dirrm %%WWWDIR%%