- Make server build optionsal and add a proxy build

PR:		ports/138651 (adapted from)
Submitted by:	Vladimir Korkodinov  <viper@perm.raid.ru>
Approved by:	maintainer timeout
This commit is contained in:
Pav Lucistnik 2009-10-14 12:07:57 +00:00
parent 75c12a7347
commit 4f56b6d548
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=242822
6 changed files with 748 additions and 656 deletions

View file

@ -24,19 +24,19 @@ OPTIONS= MYSQL "Use MySQL backend" on \
LDAP "Support for checking LDAP servers" on \
IPV6 "Support for IPv6" on \
FPING "Use fping for pinging hosts" on \
JABBER "Use jabber media type" on
JABBER "Use jabber media type" on \
PROXY "Install Zabbix Proxy" on \
SERVER "Install Zabbix Server" on
USE_GMAKE= yes
USE_PHP= gd snmp sockets pcre bcmath
USE_RC_SUBR= zabbix_server.sh
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-agent --enable-server \
CONFIGURE_ARGS= --disable-agent \
--with-net-snmp=${LOCALBASE}/bin/net-snmp-config \
--with-curl=${LOCALBASE}/bin/curl-config
MAKE_ARGS= ARCH=freebsd
SUB_FILES= pkg-message
.include <bsd.port.pre.mk>
.include <bsd.port.options.mk>
.ifndef WITHOUT_JABBER
USE_JABBER= yes
@ -74,6 +74,26 @@ CONFIGURE_ARGS+=--with-sqlite3=${LOCALBASE}
IGNORE= zabbix needs a database backend
.endif
.ifndef WITHOUT_PROXY
CONFIGURE_ARGS+=--enable-proxy
USE_RC_SUBR+= zabbix_proxy
PLIST_SUB+= PROXY=""
.else
PLIST_SUB+= PROXY="@comment "
.endif
.ifndef WITHOUT_SERVER
USE_PHP= gd snmp sockets pcre bcmath
USE_RC_SUBR+= zabbix_server.sh
CONFIGURE_ARGS+=--enable-server
PLIST_SUB+= SERVER=""
.else
CONFIGURE_ARGS+=--disable-server
PLIST_SUB+= SERVER="@comment "
.endif
.include <bsd.port.pre.mk>
post-patch:
@${FIND} ${WRKSRC}/src/ -type f|${XARGS} \
${REINPLACE_CMD} -e 's|/etc/zabbix|${ETCDIR}|;s|/usr/sbin|${LOCALBASE}/sbin|'
@ -92,13 +112,21 @@ post-configure:
.endif
do-install:
.ifndef WITHOUT_SERVER
@${INSTALL_PROGRAM} ${WRKSRC}/src/zabbix_server/zabbix_server ${PREFIX}/bin/
@${INSTALL} -d ${ETCDIR}/
@${INSTALL_DATA} ${WRKSRC}/misc/conf/zabbix_server.conf\
${ETCDIR}/zabbix_server.conf.sample
@cd ${WRKSRC}/frontends/&&${COPYTREE_SHARE} . ${DATADIR}/
.endif
@cd ${WRKSRC}/upgrades/&&${COPYTREE_SHARE} dbpatches ${DATADIR}/
@cd ${WRKSRC}/create/&&${COPYTREE_SHARE} "data schema" ${DATADIR}/create/
.ifndef WITHOUT_PROXY
@${INSTALL_PROGRAM} ${WRKSRC}/src/zabbix_proxy/zabbix_proxy ${PREFIX}/bin/
@${INSTALL} -d ${ETCDIR}/
@${INSTALL_DATA} ${WRKSRC}/misc/conf/zabbix_proxy.conf\
${ETCDIR}/zabbix_proxy.conf.sample
.endif
@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
@${CAT} ${PKGMESSAGE}

View file

@ -0,0 +1,16 @@
#!/bin/sh
# PROVIDE: zabbix_proxy
# REQUIRE: DAEMON
# KEYWORD: shutdown
. %%RC_SUBR%%
name="zabbix_proxy"
rcvar=${name}_enable
load_rc_config $name
eval : \${${rcvar}='NO'}
command="%%PREFIX%%/bin/${name}"
required_files="%%ETCDIR%%/${name}.conf"
run_rc_command "$1"

View file

@ -1,5 +1,7 @@
bin/zabbix_server
%%ETCDIR%%/zabbix_server.conf.sample
%%PROXY%%bin/zabbix_proxy
%%SERVER%%bin/zabbix_server
%%PROXY%%%%ETCDIR%%/zabbix_proxy.conf.sample
%%SERVER%%%%ETCDIR%%/zabbix_server.conf.sample
%%DATADIR%%/create/data/data.sql
%%DATADIR%%/create/data/images/Hub.png
%%DATADIR%%/create/data/images/Hub_small.png
@ -32,327 +34,327 @@ bin/zabbix_server
%%DATADIR%%/dbpatches/1.6/mysql/patch.sql
%%DATADIR%%/dbpatches/1.6/oracle/patch.sql
%%DATADIR%%/dbpatches/1.6/postgresql/patch.sql
%%DATADIR%%/php/acknow.php
%%DATADIR%%/php/actionconf.php
%%DATADIR%%/php/audio/trigger_off.wav
%%DATADIR%%/php/audio/trigger_on.wav
%%DATADIR%%/php/audio/trigger_on_average.wav
%%DATADIR%%/php/audio/trigger_on_disaster.wav
%%DATADIR%%/php/audio/trigger_on_high.wav
%%DATADIR%%/php/audio/trigger_on_warning.wav
%%DATADIR%%/php/audit.php
%%DATADIR%%/php/authentication.php
%%DATADIR%%/php/chart.php
%%DATADIR%%/php/chart2.php
%%DATADIR%%/php/chart3.php
%%DATADIR%%/php/chart4.php
%%DATADIR%%/php/chart5.php
%%DATADIR%%/php/chart6.php
%%DATADIR%%/php/chart7.php
%%DATADIR%%/php/chart_sla.php
%%DATADIR%%/php/charts.php
%%DATADIR%%/php/conf/COPYING
%%DATADIR%%/php/conf/maintenance.inc.php
%%DATADIR%%/php/config.php
%%DATADIR%%/php/css.css
%%DATADIR%%/php/dashboard.php
%%DATADIR%%/php/discovery.php
%%DATADIR%%/php/discoveryconf.php
%%DATADIR%%/php/events.php
%%DATADIR%%/php/exp_imp.php
%%DATADIR%%/php/graphs.php
%%DATADIR%%/php/history.php
%%DATADIR%%/php/hostprofiles.php
%%DATADIR%%/php/hosts.php
%%DATADIR%%/php/httpconf.php
%%DATADIR%%/php/httpdetails.php
%%DATADIR%%/php/httpmon.php
%%DATADIR%%/php/image.php
%%DATADIR%%/php/images/flash/zbxclock.swf
%%DATADIR%%/php/images/general/bar/arrow_down.gif
%%DATADIR%%/php/images/general/bar/arrow_l.gif
%%DATADIR%%/php/images/general/bar/arrow_r.gif
%%DATADIR%%/php/images/general/bar/arrow_sm.gif
%%DATADIR%%/php/images/general/bar/arrow_up.gif
%%DATADIR%%/php/images/general/bar/bar_bg.gif
%%DATADIR%%/php/images/general/bar/bar_left.gif
%%DATADIR%%/php/images/general/bar/bar_middle.gif
%%DATADIR%%/php/images/general/bar/bar_right.gif
%%DATADIR%%/php/images/general/bar/bg.gif
%%DATADIR%%/php/images/general/bar/cal.gif
%%DATADIR%%/php/images/general/bar/left.gif
%%DATADIR%%/php/images/general/bar/right.gif
%%DATADIR%%/php/images/general/bttn/arrowdown.png
%%DATADIR%%/php/images/general/bttn/arrowdown_bb.png
%%DATADIR%%/php/images/general/bttn/arrowup.png
%%DATADIR%%/php/images/general/bttn/arrowup_bb.png
%%DATADIR%%/php/images/general/bttn/down.png
%%DATADIR%%/php/images/general/bttn/down_bb.png
%%DATADIR%%/php/images/general/bttn/fullscreen.png
%%DATADIR%%/php/images/general/bttn/fullscreen_bb.png
%%DATADIR%%/php/images/general/bttn/help.png
%%DATADIR%%/php/images/general/bttn/help_bb.png
%%DATADIR%%/php/images/general/bttn/menu.png
%%DATADIR%%/php/images/general/bttn/menu_bb.png
%%DATADIR%%/php/images/general/bttn/minus.png
%%DATADIR%%/php/images/general/bttn/minus_bb.png
%%DATADIR%%/php/images/general/bttn/mute.png
%%DATADIR%%/php/images/general/bttn/mute_bb.png
%%DATADIR%%/php/images/general/bttn/plus.png
%%DATADIR%%/php/images/general/bttn/plus_bb.png
%%DATADIR%%/php/images/general/bttn/reset.png
%%DATADIR%%/php/images/general/bttn/reset_bb.png
%%DATADIR%%/php/images/general/bttn/sound.png
%%DATADIR%%/php/images/general/bttn/sound_bb.png
%%DATADIR%%/php/images/general/bttn/up.png
%%DATADIR%%/php/images/general/bttn/up_bb.png
%%DATADIR%%/php/images/general/chart.png
%%DATADIR%%/php/images/general/closed.gif
%%DATADIR%%/php/images/general/down_icon.png
%%DATADIR%%/php/images/general/error_small.gif
%%DATADIR%%/php/images/general/help.gif
%%DATADIR%%/php/images/general/inst_completed.gif
%%DATADIR%%/php/images/general/inst_current.gif
%%DATADIR%%/php/images/general/inst_step.gif
%%DATADIR%%/php/images/general/opened.gif
%%DATADIR%%/php/images/general/sort_downw.gif
%%DATADIR%%/php/images/general/sort_upw.gif
%%DATADIR%%/php/images/general/sortdown.gif
%%DATADIR%%/php/images/general/sortdown_off.gif
%%DATADIR%%/php/images/general/sortup.gif
%%DATADIR%%/php/images/general/sortup_off.gif
%%DATADIR%%/php/images/general/tick.png
%%DATADIR%%/php/images/general/tree/minus.gif
%%DATADIR%%/php/images/general/tree/plus.gif
%%DATADIR%%/php/images/general/tree/point.gif
%%DATADIR%%/php/images/general/tree/pointc.gif
%%DATADIR%%/php/images/general/tree/pointl.gif
%%DATADIR%%/php/images/general/tree/zero.gif
%%DATADIR%%/php/images/general/trigg_dep.gif
%%DATADIR%%/php/images/general/trigg_dep.png
%%DATADIR%%/php/images/general/up_icon.png
%%DATADIR%%/php/images/general/warning16r.gif
%%DATADIR%%/php/images/general/warning_small.gif
%%DATADIR%%/php/images/general/zabbix.ico
%%DATADIR%%/php/images/general/zabbix.png
%%DATADIR%%/php/images/general/zabbix_bb.ico
%%DATADIR%%/php/images/general/zabbix_bb.png
%%DATADIR%%/php/images/general/zabbix_ob.ico
%%DATADIR%%/php/images/gradients/blink1.gif
%%DATADIR%%/php/images/gradients/blink2.gif
%%DATADIR%%/php/images/gradients/button.gif
%%DATADIR%%/php/images/gradients/gradient.png
%%DATADIR%%/php/images/gradients/menu_not_active.gif
%%DATADIR%%/php/images/gradients/menu_not_active_bb.gif
%%DATADIR%%/php/images/gradients/sla_red.png
%%DATADIR%%/php/images/gradients/sla_green.png
%%DATADIR%%/php/images/gradients/table_head.gif
%%DATADIR%%/php/images/gradients/table_head2.gif
%%DATADIR%%/php/images/gradients/table_head2_bb.gif
%%DATADIR%%/php/images/gradients/table_head_bb.gif
%%DATADIR%%/php/images/sysmaps/Hub.png
%%DATADIR%%/php/images/sysmaps/Hub_small.png
%%DATADIR%%/php/images/sysmaps/Network.png
%%DATADIR%%/php/images/sysmaps/Network_small.png
%%DATADIR%%/php/images/sysmaps/Notebook.png
%%DATADIR%%/php/images/sysmaps/Notebook_small.png
%%DATADIR%%/php/images/sysmaps/Phone.png
%%DATADIR%%/php/images/sysmaps/Phone_small.png
%%DATADIR%%/php/images/sysmaps/Printer.png
%%DATADIR%%/php/images/sysmaps/Printer_small.png
%%DATADIR%%/php/images/sysmaps/README
%%DATADIR%%/php/images/sysmaps/Router.png
%%DATADIR%%/php/images/sysmaps/Router_small.png
%%DATADIR%%/php/images/sysmaps/Satellite.png
%%DATADIR%%/php/images/sysmaps/Satellite_small.png
%%DATADIR%%/php/images/sysmaps/Server.png
%%DATADIR%%/php/images/sysmaps/Server_small.png
%%DATADIR%%/php/images/sysmaps/UPS.png
%%DATADIR%%/php/images/sysmaps/UPS_small.png
%%DATADIR%%/php/images/sysmaps/Workstation.png
%%DATADIR%%/php/images/sysmaps/Workstation_small.png
%%DATADIR%%/php/images/sysmaps/old/Hub.png
%%DATADIR%%/php/images/sysmaps/old/Notebook.png
%%DATADIR%%/php/images/sysmaps/old/Printer.png
%%DATADIR%%/php/images/sysmaps/old/Router.png
%%DATADIR%%/php/images/sysmaps/old/Server.png
%%DATADIR%%/php/images/sysmaps/old/Workstation.png
%%DATADIR%%/php/include/.htaccess
%%DATADIR%%/php/include/acknow.inc.php
%%DATADIR%%/php/include/actions.inc.php
%%DATADIR%%/php/include/audit.inc.php
%%DATADIR%%/php/include/blocks.inc.php
%%DATADIR%%/php/include/classes/.htaccess
%%DATADIR%%/php/include/classes/cbutton.inc.php
%%DATADIR%%/php/include/classes/ccheckbox.inc.php
%%DATADIR%%/php/include/classes/ccolor.inc.php
%%DATADIR%%/php/include/classes/ccombobox.inc.php
%%DATADIR%%/php/include/classes/cfile.inc.php
%%DATADIR%%/php/include/classes/cflash.inc.php
%%DATADIR%%/php/include/classes/cflashclock.mod.php
%%DATADIR%%/php/include/classes/cform.inc.php
%%DATADIR%%/php/include/classes/cformtable.inc.php
%%DATADIR%%/php/include/classes/chart.inc.php
%%DATADIR%%/php/include/classes/chelp.inc.php
%%DATADIR%%/php/include/classes/chostsinfo.mod.php
%%DATADIR%%/php/include/classes/ciframe.inc.php
%%DATADIR%%/php/include/classes/cimg.inc.php
%%DATADIR%%/php/include/classes/cldap.inc.php
%%DATADIR%%/php/include/classes/clink.inc.php
%%DATADIR%%/php/include/classes/clist.inc.php
%%DATADIR%%/php/include/classes/cmap.inc.php
%%DATADIR%%/php/include/classes/cpumenu.inc.php
%%DATADIR%%/php/include/classes/cscript.inc.php
%%DATADIR%%/php/include/classes/cserverinfo.mod.php
%%DATADIR%%/php/include/classes/cspan.inc.php
%%DATADIR%%/php/include/classes/ctable.inc.php
%%DATADIR%%/php/include/classes/ctableinfo.inc.php
%%DATADIR%%/php/include/classes/ctag.inc.php
%%DATADIR%%/php/include/classes/ctextarea.inc.php
%%DATADIR%%/php/include/classes/ctextbox.inc.php
%%DATADIR%%/php/include/classes/ctree.inc.php
%%DATADIR%%/php/include/classes/ctriggerinfo.mod.php
%%DATADIR%%/php/include/classes/curl.inc.php
%%DATADIR%%/php/include/classes/cvar.inc.php
%%DATADIR%%/php/include/classes/graph.inc.php
%%DATADIR%%/php/include/classes/pie.inc.php
%%DATADIR%%/php/include/config.inc.php
%%DATADIR%%/php/include/copt.lib.php
%%DATADIR%%/php/include/db.inc.php
%%DATADIR%%/php/include/defines.inc.php
%%DATADIR%%/php/include/discovery.inc.php
%%DATADIR%%/php/include/events.inc.php
%%DATADIR%%/php/include/export.inc.php
%%DATADIR%%/php/include/forms.inc.php
%%DATADIR%%/php/include/func.inc.php
%%DATADIR%%/php/include/graphs.inc.php
%%DATADIR%%/php/include/hosts.inc.php
%%DATADIR%%/php/include/html.inc.php
%%DATADIR%%/php/include/httptest.inc.php
%%DATADIR%%/php/include/images.inc.php
%%DATADIR%%/php/include/import.inc.php
%%DATADIR%%/php/include/items.inc.php
%%DATADIR%%/php/include/js.inc.php
%%DATADIR%%/php/include/locales.inc.php
%%DATADIR%%/php/include/locales/cn_zh.inc.php
%%DATADIR%%/php/include/locales/de_de.inc.php
%%DATADIR%%/php/include/locales/en_gb.inc.php
%%DATADIR%%/php/include/locales/fr_fr.inc.php
%%DATADIR%%/php/include/locales/hu_hu.inc.php
%%DATADIR%%/php/include/locales/it_it.inc.php
%%DATADIR%%/php/include/locales/ja_jp.inc.php
%%DATADIR%%/php/include/locales/ko_kr.inc.php
%%DATADIR%%/php/include/locales/lv_lv.inc.php
%%DATADIR%%/php/include/locales/nl_nl.inc.php
%%DATADIR%%/php/include/locales/pl_pl.inc.php
%%DATADIR%%/php/include/locales/pt_br.inc.php
%%DATADIR%%/php/include/locales/ru_ru.inc.php
%%DATADIR%%/php/include/locales/sp_sp.inc.php
%%DATADIR%%/php/include/locales/sv_se.inc.php
%%DATADIR%%/php/include/maps.inc.php
%%DATADIR%%/php/include/media.inc.php
%%DATADIR%%/php/include/nodes.inc.php
%%DATADIR%%/php/include/page_footer.php
%%DATADIR%%/php/include/page_header.php
%%DATADIR%%/php/include/perm.inc.php
%%DATADIR%%/php/include/profiles.inc.php
%%DATADIR%%/php/include/reports.inc.php
%%DATADIR%%/php/include/screens.inc.php
%%DATADIR%%/php/include/scripts.inc.php
%%DATADIR%%/php/include/services.inc.php
%%DATADIR%%/php/include/setup.inc.php
%%DATADIR%%/php/include/triggers.inc.php
%%DATADIR%%/php/include/users.inc.php
%%DATADIR%%/php/include/validate.inc.php
%%DATADIR%%/php/index.php
%%DATADIR%%/php/instal.php
%%DATADIR%%/php/items.php
%%DATADIR%%/php/js/ajax_req.js
%%DATADIR%%/php/js/calendar.js
%%DATADIR%%/php/js/common.js
%%DATADIR%%/php/js/gmenu.js
%%DATADIR%%/php/js/gpc.js
%%DATADIR%%/php/js/graphs.js
%%DATADIR%%/php/js/menu.js
%%DATADIR%%/php/js/menu_scripts.js
%%DATADIR%%/php/js/prototype.js
%%DATADIR%%/php/js/sbinit.js
%%DATADIR%%/php/js/sbox.js
%%DATADIR%%/php/js/scrollbar.js
%%DATADIR%%/php/js/services.js
%%DATADIR%%/php/js/showhint.js
%%DATADIR%%/php/js/tree.js
%%DATADIR%%/php/js/updater.js
%%DATADIR%%/php/latest.php
%%DATADIR%%/php/locales.php
%%DATADIR%%/php/map.php
%%DATADIR%%/php/maps.php
%%DATADIR%%/php/media_types.php
%%DATADIR%%/php/nodes.php
%%DATADIR%%/php/overview.php
%%DATADIR%%/php/popup.php
%%DATADIR%%/php/popup_gitem.php
%%DATADIR%%/php/popup_httpstep.php
%%DATADIR%%/php/popup_link_tr.php
%%DATADIR%%/php/popup_media.php
%%DATADIR%%/php/popup_right.php
%%DATADIR%%/php/popup_trexpr.php
%%DATADIR%%/php/popup_users.php
%%DATADIR%%/php/popup_usrgrp.php
%%DATADIR%%/php/profile.php
%%DATADIR%%/php/queue.php
%%DATADIR%%/php/report1.php
%%DATADIR%%/php/report2.php
%%DATADIR%%/php/report3.php
%%DATADIR%%/php/report4.php
%%DATADIR%%/php/report5.php
%%DATADIR%%/php/screenconf.php
%%DATADIR%%/php/screenedit.php
%%DATADIR%%/php/screens.php
%%DATADIR%%/php/scripts.php
%%DATADIR%%/php/scripts_exec.php
%%DATADIR%%/php/services.php
%%DATADIR%%/php/services_form.php
%%DATADIR%%/php/setup.php
%%DATADIR%%/php/srv_status.php
%%DATADIR%%/php/styles/blocks.css
%%DATADIR%%/php/styles/calendar.css
%%DATADIR%%/php/styles/css_bb.css
%%DATADIR%%/php/styles/css_ob.css
%%DATADIR%%/php/styles/default.css
%%DATADIR%%/php/styles/div.css
%%DATADIR%%/php/styles/form.css
%%DATADIR%%/php/styles/link.css
%%DATADIR%%/php/styles/p.css
%%DATADIR%%/php/styles/popupmenu.css
%%DATADIR%%/php/styles/table.css
%%DATADIR%%/php/styles/ul.css
%%DATADIR%%/php/sysmap.php
%%DATADIR%%/php/sysmaps.php
%%DATADIR%%/php/tr_comments.php
%%DATADIR%%/php/tr_events.php
%%DATADIR%%/php/tr_status.php
%%DATADIR%%/php/triggers.php
%%DATADIR%%/php/users.php
%%DATADIR%%/php/vtext.php
%%DATADIR%%/php/warning.php
@dirrm %%DATADIR%%/php/styles
@dirrm %%DATADIR%%/php/js
@dirrm %%DATADIR%%/php/include/locales
@dirrm %%DATADIR%%/php/include/classes
@dirrm %%DATADIR%%/php/include
@dirrm %%DATADIR%%/php/images/sysmaps/old
@dirrm %%DATADIR%%/php/images/sysmaps
@dirrm %%DATADIR%%/php/images/gradients
@dirrm %%DATADIR%%/php/images/general/tree
@dirrm %%DATADIR%%/php/images/general/bttn
@dirrm %%DATADIR%%/php/images/general/bar
@dirrm %%DATADIR%%/php/images/general
@dirrm %%DATADIR%%/php/images/flash
@dirrm %%DATADIR%%/php/images
@dirrm %%DATADIR%%/php/conf
@dirrm %%DATADIR%%/php/audio
@dirrm %%DATADIR%%/php
%%SERVER%%%%DATADIR%%/php/acknow.php
%%SERVER%%%%DATADIR%%/php/actionconf.php
%%SERVER%%%%DATADIR%%/php/audio/trigger_off.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on_average.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on_disaster.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on_high.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on_warning.wav
%%SERVER%%%%DATADIR%%/php/audit.php
%%SERVER%%%%DATADIR%%/php/authentication.php
%%SERVER%%%%DATADIR%%/php/chart.php
%%SERVER%%%%DATADIR%%/php/chart2.php
%%SERVER%%%%DATADIR%%/php/chart3.php
%%SERVER%%%%DATADIR%%/php/chart4.php
%%SERVER%%%%DATADIR%%/php/chart5.php
%%SERVER%%%%DATADIR%%/php/chart6.php
%%SERVER%%%%DATADIR%%/php/chart7.php
%%SERVER%%%%DATADIR%%/php/chart_sla.php
%%SERVER%%%%DATADIR%%/php/charts.php
%%SERVER%%%%DATADIR%%/php/conf/COPYING
%%SERVER%%%%DATADIR%%/php/conf/maintenance.inc.php
%%SERVER%%%%DATADIR%%/php/config.php
%%SERVER%%%%DATADIR%%/php/css.css
%%SERVER%%%%DATADIR%%/php/dashboard.php
%%SERVER%%%%DATADIR%%/php/discovery.php
%%SERVER%%%%DATADIR%%/php/discoveryconf.php
%%SERVER%%%%DATADIR%%/php/events.php
%%SERVER%%%%DATADIR%%/php/exp_imp.php
%%SERVER%%%%DATADIR%%/php/graphs.php
%%SERVER%%%%DATADIR%%/php/history.php
%%SERVER%%%%DATADIR%%/php/hostprofiles.php
%%SERVER%%%%DATADIR%%/php/hosts.php
%%SERVER%%%%DATADIR%%/php/httpconf.php
%%SERVER%%%%DATADIR%%/php/httpdetails.php
%%SERVER%%%%DATADIR%%/php/httpmon.php
%%SERVER%%%%DATADIR%%/php/image.php
%%SERVER%%%%DATADIR%%/php/images/flash/zbxclock.swf
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_down.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_l.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_r.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_sm.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_up.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bar_bg.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bar_left.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bar_middle.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bar_right.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bg.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/cal.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/left.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/right.gif
%%SERVER%%%%DATADIR%%/php/images/general/bttn/arrowdown.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/arrowdown_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/arrowup.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/arrowup_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/down.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/down_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/fullscreen.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/fullscreen_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/help.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/help_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/menu.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/menu_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/minus.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/minus_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/mute.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/mute_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/plus.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/plus_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/reset.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/reset_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/sound.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/sound_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/up.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/up_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/chart.png
%%SERVER%%%%DATADIR%%/php/images/general/closed.gif
%%SERVER%%%%DATADIR%%/php/images/general/down_icon.png
%%SERVER%%%%DATADIR%%/php/images/general/error_small.gif
%%SERVER%%%%DATADIR%%/php/images/general/help.gif
%%SERVER%%%%DATADIR%%/php/images/general/inst_completed.gif
%%SERVER%%%%DATADIR%%/php/images/general/inst_current.gif
%%SERVER%%%%DATADIR%%/php/images/general/inst_step.gif
%%SERVER%%%%DATADIR%%/php/images/general/opened.gif
%%SERVER%%%%DATADIR%%/php/images/general/sort_downw.gif
%%SERVER%%%%DATADIR%%/php/images/general/sort_upw.gif
%%SERVER%%%%DATADIR%%/php/images/general/sortdown.gif
%%SERVER%%%%DATADIR%%/php/images/general/sortdown_off.gif
%%SERVER%%%%DATADIR%%/php/images/general/sortup.gif
%%SERVER%%%%DATADIR%%/php/images/general/sortup_off.gif
%%SERVER%%%%DATADIR%%/php/images/general/tick.png
%%SERVER%%%%DATADIR%%/php/images/general/tree/minus.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/plus.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/point.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/pointc.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/pointl.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/zero.gif
%%SERVER%%%%DATADIR%%/php/images/general/trigg_dep.gif
%%SERVER%%%%DATADIR%%/php/images/general/trigg_dep.png
%%SERVER%%%%DATADIR%%/php/images/general/up_icon.png
%%SERVER%%%%DATADIR%%/php/images/general/warning16r.gif
%%SERVER%%%%DATADIR%%/php/images/general/warning_small.gif
%%SERVER%%%%DATADIR%%/php/images/general/zabbix.ico
%%SERVER%%%%DATADIR%%/php/images/general/zabbix.png
%%SERVER%%%%DATADIR%%/php/images/general/zabbix_bb.ico
%%SERVER%%%%DATADIR%%/php/images/general/zabbix_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/zabbix_ob.ico
%%SERVER%%%%DATADIR%%/php/images/gradients/blink1.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/blink2.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/button.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/gradient.png
%%SERVER%%%%DATADIR%%/php/images/gradients/menu_not_active.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/menu_not_active_bb.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/sla_red.png
%%SERVER%%%%DATADIR%%/php/images/gradients/sla_green.png
%%SERVER%%%%DATADIR%%/php/images/gradients/table_head.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/table_head2.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/table_head2_bb.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/table_head_bb.gif
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Hub.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Hub_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Network.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Network_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Notebook.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Notebook_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Phone.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Phone_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Printer.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Printer_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/README
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Router.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Router_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Satellite.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Satellite_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Server.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Server_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/UPS.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/UPS_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Workstation.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Workstation_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Hub.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Notebook.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Printer.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Router.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Server.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Workstation.png
%%SERVER%%%%DATADIR%%/php/include/.htaccess
%%SERVER%%%%DATADIR%%/php/include/acknow.inc.php
%%SERVER%%%%DATADIR%%/php/include/actions.inc.php
%%SERVER%%%%DATADIR%%/php/include/audit.inc.php
%%SERVER%%%%DATADIR%%/php/include/blocks.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/.htaccess
%%SERVER%%%%DATADIR%%/php/include/classes/cbutton.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ccheckbox.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ccolor.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ccombobox.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cfile.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cflash.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cflashclock.mod.php
%%SERVER%%%%DATADIR%%/php/include/classes/cform.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cformtable.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/chart.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/chelp.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/chostsinfo.mod.php
%%SERVER%%%%DATADIR%%/php/include/classes/ciframe.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cimg.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cldap.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/clink.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/clist.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cmap.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cpumenu.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cscript.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cserverinfo.mod.php
%%SERVER%%%%DATADIR%%/php/include/classes/cspan.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctable.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctableinfo.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctag.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctextarea.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctextbox.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctree.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctriggerinfo.mod.php
%%SERVER%%%%DATADIR%%/php/include/classes/curl.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cvar.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/graph.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/pie.inc.php
%%SERVER%%%%DATADIR%%/php/include/config.inc.php
%%SERVER%%%%DATADIR%%/php/include/copt.lib.php
%%SERVER%%%%DATADIR%%/php/include/db.inc.php
%%SERVER%%%%DATADIR%%/php/include/defines.inc.php
%%SERVER%%%%DATADIR%%/php/include/discovery.inc.php
%%SERVER%%%%DATADIR%%/php/include/events.inc.php
%%SERVER%%%%DATADIR%%/php/include/export.inc.php
%%SERVER%%%%DATADIR%%/php/include/forms.inc.php
%%SERVER%%%%DATADIR%%/php/include/func.inc.php
%%SERVER%%%%DATADIR%%/php/include/graphs.inc.php
%%SERVER%%%%DATADIR%%/php/include/hosts.inc.php
%%SERVER%%%%DATADIR%%/php/include/html.inc.php
%%SERVER%%%%DATADIR%%/php/include/httptest.inc.php
%%SERVER%%%%DATADIR%%/php/include/images.inc.php
%%SERVER%%%%DATADIR%%/php/include/import.inc.php
%%SERVER%%%%DATADIR%%/php/include/items.inc.php
%%SERVER%%%%DATADIR%%/php/include/js.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/cn_zh.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/de_de.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/en_gb.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/fr_fr.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/hu_hu.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/it_it.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/ja_jp.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/ko_kr.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/lv_lv.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/nl_nl.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/pl_pl.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/pt_br.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/ru_ru.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/sp_sp.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/sv_se.inc.php
%%SERVER%%%%DATADIR%%/php/include/maps.inc.php
%%SERVER%%%%DATADIR%%/php/include/media.inc.php
%%SERVER%%%%DATADIR%%/php/include/nodes.inc.php
%%SERVER%%%%DATADIR%%/php/include/page_footer.php
%%SERVER%%%%DATADIR%%/php/include/page_header.php
%%SERVER%%%%DATADIR%%/php/include/perm.inc.php
%%SERVER%%%%DATADIR%%/php/include/profiles.inc.php
%%SERVER%%%%DATADIR%%/php/include/reports.inc.php
%%SERVER%%%%DATADIR%%/php/include/screens.inc.php
%%SERVER%%%%DATADIR%%/php/include/scripts.inc.php
%%SERVER%%%%DATADIR%%/php/include/services.inc.php
%%SERVER%%%%DATADIR%%/php/include/setup.inc.php
%%SERVER%%%%DATADIR%%/php/include/triggers.inc.php
%%SERVER%%%%DATADIR%%/php/include/users.inc.php
%%SERVER%%%%DATADIR%%/php/include/validate.inc.php
%%SERVER%%%%DATADIR%%/php/index.php
%%SERVER%%%%DATADIR%%/php/instal.php
%%SERVER%%%%DATADIR%%/php/items.php
%%SERVER%%%%DATADIR%%/php/js/ajax_req.js
%%SERVER%%%%DATADIR%%/php/js/calendar.js
%%SERVER%%%%DATADIR%%/php/js/common.js
%%SERVER%%%%DATADIR%%/php/js/gmenu.js
%%SERVER%%%%DATADIR%%/php/js/gpc.js
%%SERVER%%%%DATADIR%%/php/js/graphs.js
%%SERVER%%%%DATADIR%%/php/js/menu.js
%%SERVER%%%%DATADIR%%/php/js/menu_scripts.js
%%SERVER%%%%DATADIR%%/php/js/prototype.js
%%SERVER%%%%DATADIR%%/php/js/sbinit.js
%%SERVER%%%%DATADIR%%/php/js/sbox.js
%%SERVER%%%%DATADIR%%/php/js/scrollbar.js
%%SERVER%%%%DATADIR%%/php/js/services.js
%%SERVER%%%%DATADIR%%/php/js/showhint.js
%%SERVER%%%%DATADIR%%/php/js/tree.js
%%SERVER%%%%DATADIR%%/php/js/updater.js
%%SERVER%%%%DATADIR%%/php/latest.php
%%SERVER%%%%DATADIR%%/php/locales.php
%%SERVER%%%%DATADIR%%/php/map.php
%%SERVER%%%%DATADIR%%/php/maps.php
%%SERVER%%%%DATADIR%%/php/media_types.php
%%SERVER%%%%DATADIR%%/php/nodes.php
%%SERVER%%%%DATADIR%%/php/overview.php
%%SERVER%%%%DATADIR%%/php/popup.php
%%SERVER%%%%DATADIR%%/php/popup_gitem.php
%%SERVER%%%%DATADIR%%/php/popup_httpstep.php
%%SERVER%%%%DATADIR%%/php/popup_link_tr.php
%%SERVER%%%%DATADIR%%/php/popup_media.php
%%SERVER%%%%DATADIR%%/php/popup_right.php
%%SERVER%%%%DATADIR%%/php/popup_trexpr.php
%%SERVER%%%%DATADIR%%/php/popup_users.php
%%SERVER%%%%DATADIR%%/php/popup_usrgrp.php
%%SERVER%%%%DATADIR%%/php/profile.php
%%SERVER%%%%DATADIR%%/php/queue.php
%%SERVER%%%%DATADIR%%/php/report1.php
%%SERVER%%%%DATADIR%%/php/report2.php
%%SERVER%%%%DATADIR%%/php/report3.php
%%SERVER%%%%DATADIR%%/php/report4.php
%%SERVER%%%%DATADIR%%/php/report5.php
%%SERVER%%%%DATADIR%%/php/screenconf.php
%%SERVER%%%%DATADIR%%/php/screenedit.php
%%SERVER%%%%DATADIR%%/php/screens.php
%%SERVER%%%%DATADIR%%/php/scripts.php
%%SERVER%%%%DATADIR%%/php/scripts_exec.php
%%SERVER%%%%DATADIR%%/php/services.php
%%SERVER%%%%DATADIR%%/php/services_form.php
%%SERVER%%%%DATADIR%%/php/setup.php
%%SERVER%%%%DATADIR%%/php/srv_status.php
%%SERVER%%%%DATADIR%%/php/styles/blocks.css
%%SERVER%%%%DATADIR%%/php/styles/calendar.css
%%SERVER%%%%DATADIR%%/php/styles/css_bb.css
%%SERVER%%%%DATADIR%%/php/styles/css_ob.css
%%SERVER%%%%DATADIR%%/php/styles/default.css
%%SERVER%%%%DATADIR%%/php/styles/div.css
%%SERVER%%%%DATADIR%%/php/styles/form.css
%%SERVER%%%%DATADIR%%/php/styles/link.css
%%SERVER%%%%DATADIR%%/php/styles/p.css
%%SERVER%%%%DATADIR%%/php/styles/popupmenu.css
%%SERVER%%%%DATADIR%%/php/styles/table.css
%%SERVER%%%%DATADIR%%/php/styles/ul.css
%%SERVER%%%%DATADIR%%/php/sysmap.php
%%SERVER%%%%DATADIR%%/php/sysmaps.php
%%SERVER%%%%DATADIR%%/php/tr_comments.php
%%SERVER%%%%DATADIR%%/php/tr_events.php
%%SERVER%%%%DATADIR%%/php/tr_status.php
%%SERVER%%%%DATADIR%%/php/triggers.php
%%SERVER%%%%DATADIR%%/php/users.php
%%SERVER%%%%DATADIR%%/php/vtext.php
%%SERVER%%%%DATADIR%%/php/warning.php
%%SERVER%%@dirrm %%DATADIR%%/php/styles
%%SERVER%%@dirrm %%DATADIR%%/php/js
%%SERVER%%@dirrm %%DATADIR%%/php/include/locales
%%SERVER%%@dirrm %%DATADIR%%/php/include/classes
%%SERVER%%@dirrm %%DATADIR%%/php/include
%%SERVER%%@dirrm %%DATADIR%%/php/images/sysmaps/old
%%SERVER%%@dirrm %%DATADIR%%/php/images/sysmaps
%%SERVER%%@dirrm %%DATADIR%%/php/images/gradients
%%SERVER%%@dirrm %%DATADIR%%/php/images/general/tree
%%SERVER%%@dirrm %%DATADIR%%/php/images/general/bttn
%%SERVER%%@dirrm %%DATADIR%%/php/images/general/bar
%%SERVER%%@dirrm %%DATADIR%%/php/images/general
%%SERVER%%@dirrm %%DATADIR%%/php/images/flash
%%SERVER%%@dirrm %%DATADIR%%/php/images
%%SERVER%%@dirrm %%DATADIR%%/php/conf
%%SERVER%%@dirrm %%DATADIR%%/php/audio
%%SERVER%%@dirrm %%DATADIR%%/php
@dirrm %%DATADIR%%/dbpatches/1.6/postgresql
@dirrm %%DATADIR%%/dbpatches/1.6/oracle
@dirrm %%DATADIR%%/dbpatches/1.6/mysql

View file

@ -24,19 +24,19 @@ OPTIONS= MYSQL "Use MySQL backend" on \
LDAP "Support for checking LDAP servers" on \
IPV6 "Support for IPv6" on \
FPING "Use fping for pinging hosts" on \
JABBER "Use jabber media type" on
JABBER "Use jabber media type" on \
PROXY "Install Zabbix Proxy" on \
SERVER "Install Zabbix Server" on
USE_GMAKE= yes
USE_PHP= gd snmp sockets pcre bcmath
USE_RC_SUBR= zabbix_server.sh
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-agent --enable-server \
CONFIGURE_ARGS= --disable-agent \
--with-net-snmp=${LOCALBASE}/bin/net-snmp-config \
--with-curl=${LOCALBASE}/bin/curl-config
MAKE_ARGS= ARCH=freebsd
SUB_FILES= pkg-message
.include <bsd.port.pre.mk>
.include <bsd.port.options.mk>
.ifndef WITHOUT_JABBER
USE_JABBER= yes
@ -74,6 +74,26 @@ CONFIGURE_ARGS+=--with-sqlite3=${LOCALBASE}
IGNORE= zabbix needs a database backend
.endif
.ifndef WITHOUT_PROXY
CONFIGURE_ARGS+=--enable-proxy
USE_RC_SUBR+= zabbix_proxy
PLIST_SUB+= PROXY=""
.else
PLIST_SUB+= PROXY="@comment "
.endif
.ifndef WITHOUT_SERVER
USE_PHP= gd snmp sockets pcre bcmath
USE_RC_SUBR+= zabbix_server.sh
CONFIGURE_ARGS+=--enable-server
PLIST_SUB+= SERVER=""
.else
CONFIGURE_ARGS+=--disable-server
PLIST_SUB+= SERVER="@comment "
.endif
.include <bsd.port.pre.mk>
post-patch:
@${FIND} ${WRKSRC}/src/ -type f|${XARGS} \
${REINPLACE_CMD} -e 's|/etc/zabbix|${ETCDIR}|;s|/usr/sbin|${LOCALBASE}/sbin|'
@ -92,13 +112,21 @@ post-configure:
.endif
do-install:
.ifndef WITHOUT_SERVER
@${INSTALL_PROGRAM} ${WRKSRC}/src/zabbix_server/zabbix_server ${PREFIX}/bin/
@${INSTALL} -d ${ETCDIR}/
@${INSTALL_DATA} ${WRKSRC}/misc/conf/zabbix_server.conf\
${ETCDIR}/zabbix_server.conf.sample
@cd ${WRKSRC}/frontends/&&${COPYTREE_SHARE} . ${DATADIR}/
.endif
@cd ${WRKSRC}/upgrades/&&${COPYTREE_SHARE} dbpatches ${DATADIR}/
@cd ${WRKSRC}/create/&&${COPYTREE_SHARE} "data schema" ${DATADIR}/create/
.ifndef WITHOUT_PROXY
@${INSTALL_PROGRAM} ${WRKSRC}/src/zabbix_proxy/zabbix_proxy ${PREFIX}/bin/
@${INSTALL} -d ${ETCDIR}/
@${INSTALL_DATA} ${WRKSRC}/misc/conf/zabbix_proxy.conf\
${ETCDIR}/zabbix_proxy.conf.sample
.endif
@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
@${CAT} ${PKGMESSAGE}

View file

@ -0,0 +1,16 @@
#!/bin/sh
# PROVIDE: zabbix_proxy
# REQUIRE: DAEMON
# KEYWORD: shutdown
. %%RC_SUBR%%
name="zabbix_proxy"
rcvar=${name}_enable
load_rc_config $name
eval : \${${rcvar}='NO'}
command="%%PREFIX%%/bin/${name}"
required_files="%%ETCDIR%%/${name}.conf"
run_rc_command "$1"

View file

@ -1,5 +1,7 @@
bin/zabbix_server
%%ETCDIR%%/zabbix_server.conf.sample
%%PROXY%%bin/zabbix_proxy
%%SERVER%%bin/zabbix_server
%%PROXY%%%%ETCDIR%%/zabbix_proxy.conf.sample
%%SERVER%%%%ETCDIR%%/zabbix_server.conf.sample
%%DATADIR%%/create/data/data.sql
%%DATADIR%%/create/data/images/Hub.png
%%DATADIR%%/create/data/images/Hub_small.png
@ -32,327 +34,327 @@ bin/zabbix_server
%%DATADIR%%/dbpatches/1.6/mysql/patch.sql
%%DATADIR%%/dbpatches/1.6/oracle/patch.sql
%%DATADIR%%/dbpatches/1.6/postgresql/patch.sql
%%DATADIR%%/php/acknow.php
%%DATADIR%%/php/actionconf.php
%%DATADIR%%/php/audio/trigger_off.wav
%%DATADIR%%/php/audio/trigger_on.wav
%%DATADIR%%/php/audio/trigger_on_average.wav
%%DATADIR%%/php/audio/trigger_on_disaster.wav
%%DATADIR%%/php/audio/trigger_on_high.wav
%%DATADIR%%/php/audio/trigger_on_warning.wav
%%DATADIR%%/php/audit.php
%%DATADIR%%/php/authentication.php
%%DATADIR%%/php/chart.php
%%DATADIR%%/php/chart2.php
%%DATADIR%%/php/chart3.php
%%DATADIR%%/php/chart4.php
%%DATADIR%%/php/chart5.php
%%DATADIR%%/php/chart6.php
%%DATADIR%%/php/chart7.php
%%DATADIR%%/php/chart_sla.php
%%DATADIR%%/php/charts.php
%%DATADIR%%/php/conf/COPYING
%%DATADIR%%/php/conf/maintenance.inc.php
%%DATADIR%%/php/config.php
%%DATADIR%%/php/css.css
%%DATADIR%%/php/dashboard.php
%%DATADIR%%/php/discovery.php
%%DATADIR%%/php/discoveryconf.php
%%DATADIR%%/php/events.php
%%DATADIR%%/php/exp_imp.php
%%DATADIR%%/php/graphs.php
%%DATADIR%%/php/history.php
%%DATADIR%%/php/hostprofiles.php
%%DATADIR%%/php/hosts.php
%%DATADIR%%/php/httpconf.php
%%DATADIR%%/php/httpdetails.php
%%DATADIR%%/php/httpmon.php
%%DATADIR%%/php/image.php
%%DATADIR%%/php/images/flash/zbxclock.swf
%%DATADIR%%/php/images/general/bar/arrow_down.gif
%%DATADIR%%/php/images/general/bar/arrow_l.gif
%%DATADIR%%/php/images/general/bar/arrow_r.gif
%%DATADIR%%/php/images/general/bar/arrow_sm.gif
%%DATADIR%%/php/images/general/bar/arrow_up.gif
%%DATADIR%%/php/images/general/bar/bar_bg.gif
%%DATADIR%%/php/images/general/bar/bar_left.gif
%%DATADIR%%/php/images/general/bar/bar_middle.gif
%%DATADIR%%/php/images/general/bar/bar_right.gif
%%DATADIR%%/php/images/general/bar/bg.gif
%%DATADIR%%/php/images/general/bar/cal.gif
%%DATADIR%%/php/images/general/bar/left.gif
%%DATADIR%%/php/images/general/bar/right.gif
%%DATADIR%%/php/images/general/bttn/arrowdown.png
%%DATADIR%%/php/images/general/bttn/arrowdown_bb.png
%%DATADIR%%/php/images/general/bttn/arrowup.png
%%DATADIR%%/php/images/general/bttn/arrowup_bb.png
%%DATADIR%%/php/images/general/bttn/down.png
%%DATADIR%%/php/images/general/bttn/down_bb.png
%%DATADIR%%/php/images/general/bttn/fullscreen.png
%%DATADIR%%/php/images/general/bttn/fullscreen_bb.png
%%DATADIR%%/php/images/general/bttn/help.png
%%DATADIR%%/php/images/general/bttn/help_bb.png
%%DATADIR%%/php/images/general/bttn/menu.png
%%DATADIR%%/php/images/general/bttn/menu_bb.png
%%DATADIR%%/php/images/general/bttn/minus.png
%%DATADIR%%/php/images/general/bttn/minus_bb.png
%%DATADIR%%/php/images/general/bttn/mute.png
%%DATADIR%%/php/images/general/bttn/mute_bb.png
%%DATADIR%%/php/images/general/bttn/plus.png
%%DATADIR%%/php/images/general/bttn/plus_bb.png
%%DATADIR%%/php/images/general/bttn/reset.png
%%DATADIR%%/php/images/general/bttn/reset_bb.png
%%DATADIR%%/php/images/general/bttn/sound.png
%%DATADIR%%/php/images/general/bttn/sound_bb.png
%%DATADIR%%/php/images/general/bttn/up.png
%%DATADIR%%/php/images/general/bttn/up_bb.png
%%DATADIR%%/php/images/general/chart.png
%%DATADIR%%/php/images/general/closed.gif
%%DATADIR%%/php/images/general/down_icon.png
%%DATADIR%%/php/images/general/error_small.gif
%%DATADIR%%/php/images/general/help.gif
%%DATADIR%%/php/images/general/inst_completed.gif
%%DATADIR%%/php/images/general/inst_current.gif
%%DATADIR%%/php/images/general/inst_step.gif
%%DATADIR%%/php/images/general/opened.gif
%%DATADIR%%/php/images/general/sort_downw.gif
%%DATADIR%%/php/images/general/sort_upw.gif
%%DATADIR%%/php/images/general/sortdown.gif
%%DATADIR%%/php/images/general/sortdown_off.gif
%%DATADIR%%/php/images/general/sortup.gif
%%DATADIR%%/php/images/general/sortup_off.gif
%%DATADIR%%/php/images/general/tick.png
%%DATADIR%%/php/images/general/tree/minus.gif
%%DATADIR%%/php/images/general/tree/plus.gif
%%DATADIR%%/php/images/general/tree/point.gif
%%DATADIR%%/php/images/general/tree/pointc.gif
%%DATADIR%%/php/images/general/tree/pointl.gif
%%DATADIR%%/php/images/general/tree/zero.gif
%%DATADIR%%/php/images/general/trigg_dep.gif
%%DATADIR%%/php/images/general/trigg_dep.png
%%DATADIR%%/php/images/general/up_icon.png
%%DATADIR%%/php/images/general/warning16r.gif
%%DATADIR%%/php/images/general/warning_small.gif
%%DATADIR%%/php/images/general/zabbix.ico
%%DATADIR%%/php/images/general/zabbix.png
%%DATADIR%%/php/images/general/zabbix_bb.ico
%%DATADIR%%/php/images/general/zabbix_bb.png
%%DATADIR%%/php/images/general/zabbix_ob.ico
%%DATADIR%%/php/images/gradients/blink1.gif
%%DATADIR%%/php/images/gradients/blink2.gif
%%DATADIR%%/php/images/gradients/button.gif
%%DATADIR%%/php/images/gradients/gradient.png
%%DATADIR%%/php/images/gradients/menu_not_active.gif
%%DATADIR%%/php/images/gradients/menu_not_active_bb.gif
%%DATADIR%%/php/images/gradients/sla_red.png
%%DATADIR%%/php/images/gradients/sla_green.png
%%DATADIR%%/php/images/gradients/table_head.gif
%%DATADIR%%/php/images/gradients/table_head2.gif
%%DATADIR%%/php/images/gradients/table_head2_bb.gif
%%DATADIR%%/php/images/gradients/table_head_bb.gif
%%DATADIR%%/php/images/sysmaps/Hub.png
%%DATADIR%%/php/images/sysmaps/Hub_small.png
%%DATADIR%%/php/images/sysmaps/Network.png
%%DATADIR%%/php/images/sysmaps/Network_small.png
%%DATADIR%%/php/images/sysmaps/Notebook.png
%%DATADIR%%/php/images/sysmaps/Notebook_small.png
%%DATADIR%%/php/images/sysmaps/Phone.png
%%DATADIR%%/php/images/sysmaps/Phone_small.png
%%DATADIR%%/php/images/sysmaps/Printer.png
%%DATADIR%%/php/images/sysmaps/Printer_small.png
%%DATADIR%%/php/images/sysmaps/README
%%DATADIR%%/php/images/sysmaps/Router.png
%%DATADIR%%/php/images/sysmaps/Router_small.png
%%DATADIR%%/php/images/sysmaps/Satellite.png
%%DATADIR%%/php/images/sysmaps/Satellite_small.png
%%DATADIR%%/php/images/sysmaps/Server.png
%%DATADIR%%/php/images/sysmaps/Server_small.png
%%DATADIR%%/php/images/sysmaps/UPS.png
%%DATADIR%%/php/images/sysmaps/UPS_small.png
%%DATADIR%%/php/images/sysmaps/Workstation.png
%%DATADIR%%/php/images/sysmaps/Workstation_small.png
%%DATADIR%%/php/images/sysmaps/old/Hub.png
%%DATADIR%%/php/images/sysmaps/old/Notebook.png
%%DATADIR%%/php/images/sysmaps/old/Printer.png
%%DATADIR%%/php/images/sysmaps/old/Router.png
%%DATADIR%%/php/images/sysmaps/old/Server.png
%%DATADIR%%/php/images/sysmaps/old/Workstation.png
%%DATADIR%%/php/include/.htaccess
%%DATADIR%%/php/include/acknow.inc.php
%%DATADIR%%/php/include/actions.inc.php
%%DATADIR%%/php/include/audit.inc.php
%%DATADIR%%/php/include/blocks.inc.php
%%DATADIR%%/php/include/classes/.htaccess
%%DATADIR%%/php/include/classes/cbutton.inc.php
%%DATADIR%%/php/include/classes/ccheckbox.inc.php
%%DATADIR%%/php/include/classes/ccolor.inc.php
%%DATADIR%%/php/include/classes/ccombobox.inc.php
%%DATADIR%%/php/include/classes/cfile.inc.php
%%DATADIR%%/php/include/classes/cflash.inc.php
%%DATADIR%%/php/include/classes/cflashclock.mod.php
%%DATADIR%%/php/include/classes/cform.inc.php
%%DATADIR%%/php/include/classes/cformtable.inc.php
%%DATADIR%%/php/include/classes/chart.inc.php
%%DATADIR%%/php/include/classes/chelp.inc.php
%%DATADIR%%/php/include/classes/chostsinfo.mod.php
%%DATADIR%%/php/include/classes/ciframe.inc.php
%%DATADIR%%/php/include/classes/cimg.inc.php
%%DATADIR%%/php/include/classes/cldap.inc.php
%%DATADIR%%/php/include/classes/clink.inc.php
%%DATADIR%%/php/include/classes/clist.inc.php
%%DATADIR%%/php/include/classes/cmap.inc.php
%%DATADIR%%/php/include/classes/cpumenu.inc.php
%%DATADIR%%/php/include/classes/cscript.inc.php
%%DATADIR%%/php/include/classes/cserverinfo.mod.php
%%DATADIR%%/php/include/classes/cspan.inc.php
%%DATADIR%%/php/include/classes/ctable.inc.php
%%DATADIR%%/php/include/classes/ctableinfo.inc.php
%%DATADIR%%/php/include/classes/ctag.inc.php
%%DATADIR%%/php/include/classes/ctextarea.inc.php
%%DATADIR%%/php/include/classes/ctextbox.inc.php
%%DATADIR%%/php/include/classes/ctree.inc.php
%%DATADIR%%/php/include/classes/ctriggerinfo.mod.php
%%DATADIR%%/php/include/classes/curl.inc.php
%%DATADIR%%/php/include/classes/cvar.inc.php
%%DATADIR%%/php/include/classes/graph.inc.php
%%DATADIR%%/php/include/classes/pie.inc.php
%%DATADIR%%/php/include/config.inc.php
%%DATADIR%%/php/include/copt.lib.php
%%DATADIR%%/php/include/db.inc.php
%%DATADIR%%/php/include/defines.inc.php
%%DATADIR%%/php/include/discovery.inc.php
%%DATADIR%%/php/include/events.inc.php
%%DATADIR%%/php/include/export.inc.php
%%DATADIR%%/php/include/forms.inc.php
%%DATADIR%%/php/include/func.inc.php
%%DATADIR%%/php/include/graphs.inc.php
%%DATADIR%%/php/include/hosts.inc.php
%%DATADIR%%/php/include/html.inc.php
%%DATADIR%%/php/include/httptest.inc.php
%%DATADIR%%/php/include/images.inc.php
%%DATADIR%%/php/include/import.inc.php
%%DATADIR%%/php/include/items.inc.php
%%DATADIR%%/php/include/js.inc.php
%%DATADIR%%/php/include/locales.inc.php
%%DATADIR%%/php/include/locales/cn_zh.inc.php
%%DATADIR%%/php/include/locales/de_de.inc.php
%%DATADIR%%/php/include/locales/en_gb.inc.php
%%DATADIR%%/php/include/locales/fr_fr.inc.php
%%DATADIR%%/php/include/locales/hu_hu.inc.php
%%DATADIR%%/php/include/locales/it_it.inc.php
%%DATADIR%%/php/include/locales/ja_jp.inc.php
%%DATADIR%%/php/include/locales/ko_kr.inc.php
%%DATADIR%%/php/include/locales/lv_lv.inc.php
%%DATADIR%%/php/include/locales/nl_nl.inc.php
%%DATADIR%%/php/include/locales/pl_pl.inc.php
%%DATADIR%%/php/include/locales/pt_br.inc.php
%%DATADIR%%/php/include/locales/ru_ru.inc.php
%%DATADIR%%/php/include/locales/sp_sp.inc.php
%%DATADIR%%/php/include/locales/sv_se.inc.php
%%DATADIR%%/php/include/maps.inc.php
%%DATADIR%%/php/include/media.inc.php
%%DATADIR%%/php/include/nodes.inc.php
%%DATADIR%%/php/include/page_footer.php
%%DATADIR%%/php/include/page_header.php
%%DATADIR%%/php/include/perm.inc.php
%%DATADIR%%/php/include/profiles.inc.php
%%DATADIR%%/php/include/reports.inc.php
%%DATADIR%%/php/include/screens.inc.php
%%DATADIR%%/php/include/scripts.inc.php
%%DATADIR%%/php/include/services.inc.php
%%DATADIR%%/php/include/setup.inc.php
%%DATADIR%%/php/include/triggers.inc.php
%%DATADIR%%/php/include/users.inc.php
%%DATADIR%%/php/include/validate.inc.php
%%DATADIR%%/php/index.php
%%DATADIR%%/php/instal.php
%%DATADIR%%/php/items.php
%%DATADIR%%/php/js/ajax_req.js
%%DATADIR%%/php/js/calendar.js
%%DATADIR%%/php/js/common.js
%%DATADIR%%/php/js/gmenu.js
%%DATADIR%%/php/js/gpc.js
%%DATADIR%%/php/js/graphs.js
%%DATADIR%%/php/js/menu.js
%%DATADIR%%/php/js/menu_scripts.js
%%DATADIR%%/php/js/prototype.js
%%DATADIR%%/php/js/sbinit.js
%%DATADIR%%/php/js/sbox.js
%%DATADIR%%/php/js/scrollbar.js
%%DATADIR%%/php/js/services.js
%%DATADIR%%/php/js/showhint.js
%%DATADIR%%/php/js/tree.js
%%DATADIR%%/php/js/updater.js
%%DATADIR%%/php/latest.php
%%DATADIR%%/php/locales.php
%%DATADIR%%/php/map.php
%%DATADIR%%/php/maps.php
%%DATADIR%%/php/media_types.php
%%DATADIR%%/php/nodes.php
%%DATADIR%%/php/overview.php
%%DATADIR%%/php/popup.php
%%DATADIR%%/php/popup_gitem.php
%%DATADIR%%/php/popup_httpstep.php
%%DATADIR%%/php/popup_link_tr.php
%%DATADIR%%/php/popup_media.php
%%DATADIR%%/php/popup_right.php
%%DATADIR%%/php/popup_trexpr.php
%%DATADIR%%/php/popup_users.php
%%DATADIR%%/php/popup_usrgrp.php
%%DATADIR%%/php/profile.php
%%DATADIR%%/php/queue.php
%%DATADIR%%/php/report1.php
%%DATADIR%%/php/report2.php
%%DATADIR%%/php/report3.php
%%DATADIR%%/php/report4.php
%%DATADIR%%/php/report5.php
%%DATADIR%%/php/screenconf.php
%%DATADIR%%/php/screenedit.php
%%DATADIR%%/php/screens.php
%%DATADIR%%/php/scripts.php
%%DATADIR%%/php/scripts_exec.php
%%DATADIR%%/php/services.php
%%DATADIR%%/php/services_form.php
%%DATADIR%%/php/setup.php
%%DATADIR%%/php/srv_status.php
%%DATADIR%%/php/styles/blocks.css
%%DATADIR%%/php/styles/calendar.css
%%DATADIR%%/php/styles/css_bb.css
%%DATADIR%%/php/styles/css_ob.css
%%DATADIR%%/php/styles/default.css
%%DATADIR%%/php/styles/div.css
%%DATADIR%%/php/styles/form.css
%%DATADIR%%/php/styles/link.css
%%DATADIR%%/php/styles/p.css
%%DATADIR%%/php/styles/popupmenu.css
%%DATADIR%%/php/styles/table.css
%%DATADIR%%/php/styles/ul.css
%%DATADIR%%/php/sysmap.php
%%DATADIR%%/php/sysmaps.php
%%DATADIR%%/php/tr_comments.php
%%DATADIR%%/php/tr_events.php
%%DATADIR%%/php/tr_status.php
%%DATADIR%%/php/triggers.php
%%DATADIR%%/php/users.php
%%DATADIR%%/php/vtext.php
%%DATADIR%%/php/warning.php
@dirrm %%DATADIR%%/php/styles
@dirrm %%DATADIR%%/php/js
@dirrm %%DATADIR%%/php/include/locales
@dirrm %%DATADIR%%/php/include/classes
@dirrm %%DATADIR%%/php/include
@dirrm %%DATADIR%%/php/images/sysmaps/old
@dirrm %%DATADIR%%/php/images/sysmaps
@dirrm %%DATADIR%%/php/images/gradients
@dirrm %%DATADIR%%/php/images/general/tree
@dirrm %%DATADIR%%/php/images/general/bttn
@dirrm %%DATADIR%%/php/images/general/bar
@dirrm %%DATADIR%%/php/images/general
@dirrm %%DATADIR%%/php/images/flash
@dirrm %%DATADIR%%/php/images
@dirrm %%DATADIR%%/php/conf
@dirrm %%DATADIR%%/php/audio
@dirrm %%DATADIR%%/php
%%SERVER%%%%DATADIR%%/php/acknow.php
%%SERVER%%%%DATADIR%%/php/actionconf.php
%%SERVER%%%%DATADIR%%/php/audio/trigger_off.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on_average.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on_disaster.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on_high.wav
%%SERVER%%%%DATADIR%%/php/audio/trigger_on_warning.wav
%%SERVER%%%%DATADIR%%/php/audit.php
%%SERVER%%%%DATADIR%%/php/authentication.php
%%SERVER%%%%DATADIR%%/php/chart.php
%%SERVER%%%%DATADIR%%/php/chart2.php
%%SERVER%%%%DATADIR%%/php/chart3.php
%%SERVER%%%%DATADIR%%/php/chart4.php
%%SERVER%%%%DATADIR%%/php/chart5.php
%%SERVER%%%%DATADIR%%/php/chart6.php
%%SERVER%%%%DATADIR%%/php/chart7.php
%%SERVER%%%%DATADIR%%/php/chart_sla.php
%%SERVER%%%%DATADIR%%/php/charts.php
%%SERVER%%%%DATADIR%%/php/conf/COPYING
%%SERVER%%%%DATADIR%%/php/conf/maintenance.inc.php
%%SERVER%%%%DATADIR%%/php/config.php
%%SERVER%%%%DATADIR%%/php/css.css
%%SERVER%%%%DATADIR%%/php/dashboard.php
%%SERVER%%%%DATADIR%%/php/discovery.php
%%SERVER%%%%DATADIR%%/php/discoveryconf.php
%%SERVER%%%%DATADIR%%/php/events.php
%%SERVER%%%%DATADIR%%/php/exp_imp.php
%%SERVER%%%%DATADIR%%/php/graphs.php
%%SERVER%%%%DATADIR%%/php/history.php
%%SERVER%%%%DATADIR%%/php/hostprofiles.php
%%SERVER%%%%DATADIR%%/php/hosts.php
%%SERVER%%%%DATADIR%%/php/httpconf.php
%%SERVER%%%%DATADIR%%/php/httpdetails.php
%%SERVER%%%%DATADIR%%/php/httpmon.php
%%SERVER%%%%DATADIR%%/php/image.php
%%SERVER%%%%DATADIR%%/php/images/flash/zbxclock.swf
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_down.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_l.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_r.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_sm.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/arrow_up.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bar_bg.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bar_left.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bar_middle.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bar_right.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/bg.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/cal.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/left.gif
%%SERVER%%%%DATADIR%%/php/images/general/bar/right.gif
%%SERVER%%%%DATADIR%%/php/images/general/bttn/arrowdown.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/arrowdown_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/arrowup.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/arrowup_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/down.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/down_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/fullscreen.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/fullscreen_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/help.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/help_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/menu.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/menu_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/minus.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/minus_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/mute.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/mute_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/plus.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/plus_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/reset.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/reset_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/sound.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/sound_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/up.png
%%SERVER%%%%DATADIR%%/php/images/general/bttn/up_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/chart.png
%%SERVER%%%%DATADIR%%/php/images/general/closed.gif
%%SERVER%%%%DATADIR%%/php/images/general/down_icon.png
%%SERVER%%%%DATADIR%%/php/images/general/error_small.gif
%%SERVER%%%%DATADIR%%/php/images/general/help.gif
%%SERVER%%%%DATADIR%%/php/images/general/inst_completed.gif
%%SERVER%%%%DATADIR%%/php/images/general/inst_current.gif
%%SERVER%%%%DATADIR%%/php/images/general/inst_step.gif
%%SERVER%%%%DATADIR%%/php/images/general/opened.gif
%%SERVER%%%%DATADIR%%/php/images/general/sort_downw.gif
%%SERVER%%%%DATADIR%%/php/images/general/sort_upw.gif
%%SERVER%%%%DATADIR%%/php/images/general/sortdown.gif
%%SERVER%%%%DATADIR%%/php/images/general/sortdown_off.gif
%%SERVER%%%%DATADIR%%/php/images/general/sortup.gif
%%SERVER%%%%DATADIR%%/php/images/general/sortup_off.gif
%%SERVER%%%%DATADIR%%/php/images/general/tick.png
%%SERVER%%%%DATADIR%%/php/images/general/tree/minus.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/plus.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/point.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/pointc.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/pointl.gif
%%SERVER%%%%DATADIR%%/php/images/general/tree/zero.gif
%%SERVER%%%%DATADIR%%/php/images/general/trigg_dep.gif
%%SERVER%%%%DATADIR%%/php/images/general/trigg_dep.png
%%SERVER%%%%DATADIR%%/php/images/general/up_icon.png
%%SERVER%%%%DATADIR%%/php/images/general/warning16r.gif
%%SERVER%%%%DATADIR%%/php/images/general/warning_small.gif
%%SERVER%%%%DATADIR%%/php/images/general/zabbix.ico
%%SERVER%%%%DATADIR%%/php/images/general/zabbix.png
%%SERVER%%%%DATADIR%%/php/images/general/zabbix_bb.ico
%%SERVER%%%%DATADIR%%/php/images/general/zabbix_bb.png
%%SERVER%%%%DATADIR%%/php/images/general/zabbix_ob.ico
%%SERVER%%%%DATADIR%%/php/images/gradients/blink1.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/blink2.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/button.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/gradient.png
%%SERVER%%%%DATADIR%%/php/images/gradients/menu_not_active.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/menu_not_active_bb.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/sla_red.png
%%SERVER%%%%DATADIR%%/php/images/gradients/sla_green.png
%%SERVER%%%%DATADIR%%/php/images/gradients/table_head.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/table_head2.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/table_head2_bb.gif
%%SERVER%%%%DATADIR%%/php/images/gradients/table_head_bb.gif
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Hub.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Hub_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Network.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Network_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Notebook.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Notebook_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Phone.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Phone_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Printer.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Printer_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/README
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Router.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Router_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Satellite.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Satellite_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Server.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Server_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/UPS.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/UPS_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Workstation.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/Workstation_small.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Hub.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Notebook.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Printer.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Router.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Server.png
%%SERVER%%%%DATADIR%%/php/images/sysmaps/old/Workstation.png
%%SERVER%%%%DATADIR%%/php/include/.htaccess
%%SERVER%%%%DATADIR%%/php/include/acknow.inc.php
%%SERVER%%%%DATADIR%%/php/include/actions.inc.php
%%SERVER%%%%DATADIR%%/php/include/audit.inc.php
%%SERVER%%%%DATADIR%%/php/include/blocks.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/.htaccess
%%SERVER%%%%DATADIR%%/php/include/classes/cbutton.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ccheckbox.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ccolor.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ccombobox.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cfile.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cflash.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cflashclock.mod.php
%%SERVER%%%%DATADIR%%/php/include/classes/cform.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cformtable.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/chart.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/chelp.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/chostsinfo.mod.php
%%SERVER%%%%DATADIR%%/php/include/classes/ciframe.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cimg.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cldap.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/clink.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/clist.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cmap.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cpumenu.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cscript.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cserverinfo.mod.php
%%SERVER%%%%DATADIR%%/php/include/classes/cspan.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctable.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctableinfo.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctag.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctextarea.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctextbox.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctree.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/ctriggerinfo.mod.php
%%SERVER%%%%DATADIR%%/php/include/classes/curl.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/cvar.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/graph.inc.php
%%SERVER%%%%DATADIR%%/php/include/classes/pie.inc.php
%%SERVER%%%%DATADIR%%/php/include/config.inc.php
%%SERVER%%%%DATADIR%%/php/include/copt.lib.php
%%SERVER%%%%DATADIR%%/php/include/db.inc.php
%%SERVER%%%%DATADIR%%/php/include/defines.inc.php
%%SERVER%%%%DATADIR%%/php/include/discovery.inc.php
%%SERVER%%%%DATADIR%%/php/include/events.inc.php
%%SERVER%%%%DATADIR%%/php/include/export.inc.php
%%SERVER%%%%DATADIR%%/php/include/forms.inc.php
%%SERVER%%%%DATADIR%%/php/include/func.inc.php
%%SERVER%%%%DATADIR%%/php/include/graphs.inc.php
%%SERVER%%%%DATADIR%%/php/include/hosts.inc.php
%%SERVER%%%%DATADIR%%/php/include/html.inc.php
%%SERVER%%%%DATADIR%%/php/include/httptest.inc.php
%%SERVER%%%%DATADIR%%/php/include/images.inc.php
%%SERVER%%%%DATADIR%%/php/include/import.inc.php
%%SERVER%%%%DATADIR%%/php/include/items.inc.php
%%SERVER%%%%DATADIR%%/php/include/js.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/cn_zh.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/de_de.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/en_gb.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/fr_fr.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/hu_hu.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/it_it.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/ja_jp.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/ko_kr.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/lv_lv.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/nl_nl.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/pl_pl.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/pt_br.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/ru_ru.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/sp_sp.inc.php
%%SERVER%%%%DATADIR%%/php/include/locales/sv_se.inc.php
%%SERVER%%%%DATADIR%%/php/include/maps.inc.php
%%SERVER%%%%DATADIR%%/php/include/media.inc.php
%%SERVER%%%%DATADIR%%/php/include/nodes.inc.php
%%SERVER%%%%DATADIR%%/php/include/page_footer.php
%%SERVER%%%%DATADIR%%/php/include/page_header.php
%%SERVER%%%%DATADIR%%/php/include/perm.inc.php
%%SERVER%%%%DATADIR%%/php/include/profiles.inc.php
%%SERVER%%%%DATADIR%%/php/include/reports.inc.php
%%SERVER%%%%DATADIR%%/php/include/screens.inc.php
%%SERVER%%%%DATADIR%%/php/include/scripts.inc.php
%%SERVER%%%%DATADIR%%/php/include/services.inc.php
%%SERVER%%%%DATADIR%%/php/include/setup.inc.php
%%SERVER%%%%DATADIR%%/php/include/triggers.inc.php
%%SERVER%%%%DATADIR%%/php/include/users.inc.php
%%SERVER%%%%DATADIR%%/php/include/validate.inc.php
%%SERVER%%%%DATADIR%%/php/index.php
%%SERVER%%%%DATADIR%%/php/instal.php
%%SERVER%%%%DATADIR%%/php/items.php
%%SERVER%%%%DATADIR%%/php/js/ajax_req.js
%%SERVER%%%%DATADIR%%/php/js/calendar.js
%%SERVER%%%%DATADIR%%/php/js/common.js
%%SERVER%%%%DATADIR%%/php/js/gmenu.js
%%SERVER%%%%DATADIR%%/php/js/gpc.js
%%SERVER%%%%DATADIR%%/php/js/graphs.js
%%SERVER%%%%DATADIR%%/php/js/menu.js
%%SERVER%%%%DATADIR%%/php/js/menu_scripts.js
%%SERVER%%%%DATADIR%%/php/js/prototype.js
%%SERVER%%%%DATADIR%%/php/js/sbinit.js
%%SERVER%%%%DATADIR%%/php/js/sbox.js
%%SERVER%%%%DATADIR%%/php/js/scrollbar.js
%%SERVER%%%%DATADIR%%/php/js/services.js
%%SERVER%%%%DATADIR%%/php/js/showhint.js
%%SERVER%%%%DATADIR%%/php/js/tree.js
%%SERVER%%%%DATADIR%%/php/js/updater.js
%%SERVER%%%%DATADIR%%/php/latest.php
%%SERVER%%%%DATADIR%%/php/locales.php
%%SERVER%%%%DATADIR%%/php/map.php
%%SERVER%%%%DATADIR%%/php/maps.php
%%SERVER%%%%DATADIR%%/php/media_types.php
%%SERVER%%%%DATADIR%%/php/nodes.php
%%SERVER%%%%DATADIR%%/php/overview.php
%%SERVER%%%%DATADIR%%/php/popup.php
%%SERVER%%%%DATADIR%%/php/popup_gitem.php
%%SERVER%%%%DATADIR%%/php/popup_httpstep.php
%%SERVER%%%%DATADIR%%/php/popup_link_tr.php
%%SERVER%%%%DATADIR%%/php/popup_media.php
%%SERVER%%%%DATADIR%%/php/popup_right.php
%%SERVER%%%%DATADIR%%/php/popup_trexpr.php
%%SERVER%%%%DATADIR%%/php/popup_users.php
%%SERVER%%%%DATADIR%%/php/popup_usrgrp.php
%%SERVER%%%%DATADIR%%/php/profile.php
%%SERVER%%%%DATADIR%%/php/queue.php
%%SERVER%%%%DATADIR%%/php/report1.php
%%SERVER%%%%DATADIR%%/php/report2.php
%%SERVER%%%%DATADIR%%/php/report3.php
%%SERVER%%%%DATADIR%%/php/report4.php
%%SERVER%%%%DATADIR%%/php/report5.php
%%SERVER%%%%DATADIR%%/php/screenconf.php
%%SERVER%%%%DATADIR%%/php/screenedit.php
%%SERVER%%%%DATADIR%%/php/screens.php
%%SERVER%%%%DATADIR%%/php/scripts.php
%%SERVER%%%%DATADIR%%/php/scripts_exec.php
%%SERVER%%%%DATADIR%%/php/services.php
%%SERVER%%%%DATADIR%%/php/services_form.php
%%SERVER%%%%DATADIR%%/php/setup.php
%%SERVER%%%%DATADIR%%/php/srv_status.php
%%SERVER%%%%DATADIR%%/php/styles/blocks.css
%%SERVER%%%%DATADIR%%/php/styles/calendar.css
%%SERVER%%%%DATADIR%%/php/styles/css_bb.css
%%SERVER%%%%DATADIR%%/php/styles/css_ob.css
%%SERVER%%%%DATADIR%%/php/styles/default.css
%%SERVER%%%%DATADIR%%/php/styles/div.css
%%SERVER%%%%DATADIR%%/php/styles/form.css
%%SERVER%%%%DATADIR%%/php/styles/link.css
%%SERVER%%%%DATADIR%%/php/styles/p.css
%%SERVER%%%%DATADIR%%/php/styles/popupmenu.css
%%SERVER%%%%DATADIR%%/php/styles/table.css
%%SERVER%%%%DATADIR%%/php/styles/ul.css
%%SERVER%%%%DATADIR%%/php/sysmap.php
%%SERVER%%%%DATADIR%%/php/sysmaps.php
%%SERVER%%%%DATADIR%%/php/tr_comments.php
%%SERVER%%%%DATADIR%%/php/tr_events.php
%%SERVER%%%%DATADIR%%/php/tr_status.php
%%SERVER%%%%DATADIR%%/php/triggers.php
%%SERVER%%%%DATADIR%%/php/users.php
%%SERVER%%%%DATADIR%%/php/vtext.php
%%SERVER%%%%DATADIR%%/php/warning.php
%%SERVER%%@dirrm %%DATADIR%%/php/styles
%%SERVER%%@dirrm %%DATADIR%%/php/js
%%SERVER%%@dirrm %%DATADIR%%/php/include/locales
%%SERVER%%@dirrm %%DATADIR%%/php/include/classes
%%SERVER%%@dirrm %%DATADIR%%/php/include
%%SERVER%%@dirrm %%DATADIR%%/php/images/sysmaps/old
%%SERVER%%@dirrm %%DATADIR%%/php/images/sysmaps
%%SERVER%%@dirrm %%DATADIR%%/php/images/gradients
%%SERVER%%@dirrm %%DATADIR%%/php/images/general/tree
%%SERVER%%@dirrm %%DATADIR%%/php/images/general/bttn
%%SERVER%%@dirrm %%DATADIR%%/php/images/general/bar
%%SERVER%%@dirrm %%DATADIR%%/php/images/general
%%SERVER%%@dirrm %%DATADIR%%/php/images/flash
%%SERVER%%@dirrm %%DATADIR%%/php/images
%%SERVER%%@dirrm %%DATADIR%%/php/conf
%%SERVER%%@dirrm %%DATADIR%%/php/audio
%%SERVER%%@dirrm %%DATADIR%%/php
@dirrm %%DATADIR%%/dbpatches/1.6/postgresql
@dirrm %%DATADIR%%/dbpatches/1.6/oracle
@dirrm %%DATADIR%%/dbpatches/1.6/mysql