# This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # netxms # netxms/files # netxms/files/netxmsd.sh.sample.in # netxms/files/nxagentd.sh.sample.in # netxms/files/nxhttpd.sh.sample.in # netxms/Makefile # netxms/distinfo # netxms/pkg-descr # netxms/pkg-install # netxms/pkg-plist # echo c - netxms mkdir -p netxms > /dev/null 2>&1 echo c - netxms/files mkdir -p netxms/files > /dev/null 2>&1 echo x - netxms/files/netxmsd.sh.sample.in sed 's/^X//' >netxms/files/netxmsd.sh.sample.in << 'END-of-netxms/files/netxmsd.sh.sample.in' X#!/bin/sh X# X# $FreeBSD$ X# X# PROVIDE: netxmsd X# REQUIRE: LOGIN X# KEYWORD: shutdown X# X# X# Start/stop the NetXMS server X# X Xcase "$1" in X start) X /usr/local/bin/netxmsd --config /usr/local/etc/netxmsd.conf --debug-all --check-db >/dev/null && echo -n ' netxms_server' X ;; X stop) X killall TERM netxmsd X ;; X restart) X $0 stop X echo 5 second pause before restart. . . X sleep 5 X $0 start X ;; X *) X echo "Usage: $0 {start|stop|restart}" X exit 1 X esac X exit 0 X exit 0 END-of-netxms/files/netxmsd.sh.sample.in echo x - netxms/files/nxagentd.sh.sample.in sed 's/^X//' >netxms/files/nxagentd.sh.sample.in << 'END-of-netxms/files/nxagentd.sh.sample.in' X#!/bin/sh X# X# $FreeBSD$ X# X# PROVIDE: nxagentd X# REQUIRE: LOGIN X# KEYWORD: shutdown X# X# X# Start/stop the nxagent server X# X Xcase "$1" in X start) X su -fm netxms -c '/usr/local/bin/nxagentd -D -d -c /usr/local/etc/nxagentd.conf >/dev/null' && echo -n ' nxagent' X ;; X stop) X killall TERM nxagentd X ;; X restart) X $0 stop X echo 5 second pause before restart. . . X sleep 5 X $0 start X ;; X *) X echo "Usage: $0 {start|stop|restart}" X exit 1 X esac X exit 0 X exit 0 END-of-netxms/files/nxagentd.sh.sample.in echo x - netxms/files/nxhttpd.sh.sample.in sed 's/^X//' >netxms/files/nxhttpd.sh.sample.in << 'END-of-netxms/files/nxhttpd.sh.sample.in' X#!/bin/sh X# X# $FreeBSD$ X# X# PROVIDE: nxhttpd X# REQUIRE: LOGIN X# KEYWORD: shutdown X# X# X# Start/stop the nxhttpd server X# X Xcase "$1" in X start) X su -fm netxms -c '/usr/local/bin/nxhttpd -D -d -c /usr/local/etc/nxhttpd.conf >/dev/null' && echo -n ' nxhttpd' X ;; X stop) X killall TERM nxhttpd X ;; X restart) X $0 stop X echo 5 second pause before restart. . . X sleep 5 X $0 start X ;; X *) X echo "Usage: $0 {start|stop|restart}" X exit 1 X esac X exit 0 X exit 0 END-of-netxms/files/nxhttpd.sh.sample.in echo x - netxms/Makefile sed 's/^X//' >netxms/Makefile << 'END-of-netxms/Makefile' X# Ports collection makefile for: netxms X# Date created: Jul 9 2007 X# Whom: Vladimir Ermakov X# X# $FreeBSD$ X# X XPORTNAME= netxms XPORTVERSION= 0.2.18 XCATEGORIES= net-mgmt XMASTER_SITES= http://www.netxms.org/download/ X XMAINTAINER= samflanker@gmail.com XCOMMENT= NetXMS - network monitoring system X XNO_PACKAGE= yes XNOMAN= defined X XGNU_CONFIGURE= yes X XCC= gcc XCXX= g++ X XUSE_OPENSSL= yes X XUSE_LDCONFIG= yes X XCFLAGS+= -I${LOCALBASE}/include XLDFLAGS+= -L${LOCALBASE}/lib XLDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl X XOPTIONS= SERVER "Install NetXMS server & agent" off\ X CLIENT "Install NetXMS client" off \ X AGENT "Install NetXMS agent" off \ X NXHTTPD "Install web interface (nxhttpd)" off \ X MYSQL "Enable MySQL support" off \ X PGSQL "Enable PostgreSQL support" off X X.include X X.if defined(WITHOUT_SERVER) XPLIST_SUB+= SERVER="@comment " XPLIST_SUB+= AGENT="@comment " X.endif X.if defined(WITHOUT_CLIENT) XPLIST_SUB+= CLIENT="@comment " X.endif X.if defined(WITHOUT_AGENT) XPLIST_SUB+= AGENT="@comment " X.endif X.if defined(WITHOUT_NXHTTPD) XPLIST_SUB+= NXHTTPD="@comment " X.endif X.if defined(WITHOUT_MYSQL) XPLIST_SUB+= MYSQL="@comment " X.endif X.if defined(WITHOUT_PGSQL) XPLIST_SUB+= PGSQL="@comment " X.endif X X.if defined(WITH_SERVER) X.if defined(WITHOUT_MYSQL) && !defined(WITH_PGSQL) XIGNORE= is useless without a database. Please (re)run 'make config' and choose one of PGSQL and MYSQL" X.endif XUSE_RC_SUBR+= netxmsd.sh.sample XUSE_RC_SUBR+= nxagentd.sh.sample XCONFIGURE_ARGS+= --with-server XPLIST_SUB+= SERVER="" X.endif X X.if defined(WITH_CLIENT) XCONFIGURE_ARGS+= --with-client XPLIST_SUB+= CLIENT="" X.endif X X.if defined(WITH_AGENT) XUSE_RC_SUBR+= nxagentd.sh.sample XCONFIGURE_ARGS+= --with-agent XPLIST_SUB+= AGENT="" X.endif X X.if defined(WITH_NXHTTPD) XUSE_RC_SUBR+= nxhttpd.sh.sample XCONFIGURE_ARGS+= --with-nxhttpd XPLIST_SUB+= NXHTTPD="" XLIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd X.endif X X.if defined(WITH_MYSQL) XCONFIGURE_ARGS+= --with-mysql XPLIST_SUB+= MYSQL="" XUSE_MYSQL= yes X.endif X X.if defined(WITH_PGSQL) XCONFIGURE_ARGS+= --with-pgsql XPLIST_SUB+= PGSQL="" XUSE_PGSQL= yes X.endif X Xpre-install: X @${SETENV} PKG_PREFIX=${PREFIX} \ X ${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL X @if [ ! -f ${PREFIX}/etc/netxmsd.conf-dist ]; then \ X ${CP} -p ${WRKSRC}/contrib/netxmsd.conf-dist ${PREFIX}/etc/netxmsd.conf-dist ; \ X fi X @if [ ! -f ${PREFIX}/etc/nxagentd.conf-dist ]; then \ X ${CP} -p ${WRKSRC}/contrib/nxagentd.conf-dist ${PREFIX}/etc/nxagentd.conf-dist ; \ X fi X @if [ ! -f ${PREFIX}/etc/nxhttpd.conf-dist ]; then \ X ${CP} -p ${WRKSRC}/contrib/nxhttpd.conf-dist ${PREFIX}/etc/nxhttpd.conf-dist ; \ X fi X Xpost-install: X @${SETENV} PKG_PREFIX=${PREFIX} \ X ${SH} ${PKGINSTALL} ${PORTNAME} POST-INSTALL X Xpost-deinstall: X @${SETENV} PKG_PREFIX=${PREFIX} \ X ${SH} ${PKGDEINSTALL} ${PORTNAME} POST-DEINSTALL X X.include END-of-netxms/Makefile echo x - netxms/distinfo sed 's/^X//' >netxms/distinfo << 'END-of-netxms/distinfo' XMD5 (netxms-0.2.18.tar.gz) = ff790653172b5729e56b7a12b724d178 XSHA256 (netxms-0.2.18.tar.gz) = 698e5347a44a76f79b3b0c9472b2f0d475e4d213589f55631b0c808576223545 XSIZE (netxms-0.2.18.tar.gz) = 4754708 END-of-netxms/distinfo echo x - netxms/pkg-descr sed 's/^X//' >netxms/pkg-descr << 'END-of-netxms/pkg-descr' XNetXMS is new and rapidly developing monitoring system, Xreleased under GPL2 license. It can be used for monitoring Xentire IT infrastructure, starting with SNMP-capable Xhardware (like switches and routers) and ending with Xapplications on your servers. NetXMS is an extremely Xreliable and powerful monitoring system, enabling you Xto improve your network availability and service levels. X XWWW: http://www.netxms.org/ X X- Vladimir Ermakov Xsamflanker@gmail.com END-of-netxms/pkg-descr echo x - netxms/pkg-install sed 's/^X//' >netxms/pkg-install << 'END-of-netxms/pkg-install' X#! /bin/sh X X# $FreeBSD$ X XPATH=/bin:/usr/sbin XTSHOME=${PKG_PREFIX}/share/netxms X XUSER=netxms XGROUP=${USER} X Xcase "$2" in XPRE-INSTALL) X if pw group show "${GROUP}" 2>/dev/null; then X echo "You already have a group \"${GROUP}\", so I will use it." X else X if pw groupadd ${GROUP}; then X echo "Added group \"${GROUP}\"." X else X echo "Adding group \"${GROUP}\" failed..." X exit 1 X fi X fi X X if pw user show "${USER}" 2>/dev/null; then X echo "You already have a user \"${USER}\", so I will use it." X else X if pw useradd ${USER} -g ${GROUP} -h - \ X -d /nonexistent -s /sbin/nologin -c "NetXMS" X then X echo "Added user \"${USER}\"." X else X echo "Adding user \"${USER}\" failed..." X exit 1 X fi X fi X X if ! [ -x ~${USER} ] ; then X mkdir -p ${TSHOME} X chown ${USER}:${GROUP} ${TSHOME} X fi X ;; XPOST-INSTALL) X# :>${TSHOME}/log/netxmsd.log X# :>${TSHOME}/log/nxagentd.log X# :>${TSHOME}/log/nxhttpd.log X chown -R ${USER}:${GROUP} ${TSHOME} X chmod -R u+w,o-rx ${TSHOME} X ;; XPOST-DEINSTALL) X if pw group show "${GROUP}" 2>/dev/null; then X if pw groupdel ${GROUP}; then X echo "Removed group \"${GROUP}\"." X else X echo "Removing group \"${GROUP}\" failed..." X exit 1 X fi X else X echo "Group \"${GROUP}\" doesn't exist!" X fi X X if pw user show "${USER}" 2>/dev/null; then X if pw userdel ${USER}; then X echo "Removed user \"${USER}\"." X else X echo "Removing user \"${USER}\" failed..." X exit 1 X fi X else X echo "User \"${USER}\" doesn't exist!" X fi X ;; Xesac END-of-netxms/pkg-install echo x - netxms/pkg-plist sed 's/^X//' >netxms/pkg-plist << 'END-of-netxms/pkg-plist' X@comment $FreeBSD$ Xbin/netxmsd Xbin/nxaction Xbin/nxadm Xbin/nxagentd Xbin/nxcmd Xbin/nxdbmgr Xbin/nxevent Xbin/nxget Xbin/nxhttpd Xbin/nxmibc Xbin/nxpush Xbin/nxreport Xbin/nxscript Xbin/nxsnmpget Xbin/nxsnmpset Xbin/nxsnmpwalk Xbin/nxupload Xetc/netxmsd.conf-dist Xetc/nxagentd.conf-dist Xetc/nxhttpd.conf-dist Xetc/rc.d/netxmsd.sh.sample Xetc/rc.d/nxagentd.sh.sample Xetc/rc.d/nxhttpd.sh.sample Xlib/libnetxms.la Xlib/libnetxms.so Xlib/libnetxms.so.0 Xlib/libnsm_ecs.la Xlib/libnsm_ecs.so Xlib/libnsm_ecs.so.0 Xlib/libnsm_freebsd.la Xlib/libnsm_freebsd.so Xlib/libnsm_freebsd.so.0 Xlib/libnsm_ping.la Xlib/libnsm_ping.so Xlib/libnsm_ping.so.0 Xlib/libnsm_portCheck.la Xlib/libnsm_portCheck.so Xlib/libnsm_portCheck.so.0 Xlib/libnsm_skeleton.la Xlib/libnsm_skeleton.so Xlib/libnsm_skeleton.so.0 Xlib/libnsm_ups.la Xlib/libnsm_ups.so Xlib/libnsm_ups.so.0 Xlib/libnxcl.la Xlib/libnxcl.so Xlib/libnxcl.so.0 Xlib/libnxcore.la Xlib/libnxcore.so Xlib/libnxcore.so.0 Xlib/libnxddr_mysql.la Xlib/libnxddr_mysql.so Xlib/libnxddr_mysql.so.0 Xlib/libnxddr_pgsql.la Xlib/libnxddr_pgsql.so Xlib/libnxddr_pgsql.so.0 Xlib/libnxmap.la Xlib/libnxmap.so Xlib/libnxmap.so.0 Xlib/libnxsl.la Xlib/libnxsl.so Xlib/libnxsl.so.0 Xlib/libnxsms_generic.la Xlib/libnxsms_generic.so Xlib/libnxsms_generic.so.0 Xlib/libnxsnmp.la Xlib/libnxsnmp.so Xlib/libnxsnmp.so.0 Xlib/libnxsrv.la Xlib/libnxsrv.so Xlib/libnxsrv.so.0 Xshare/netxms/backgrounds/.keep Xshare/netxms/images/cluster.ico Xshare/netxms/images/cluster.png Xshare/netxms/images/condition.ico Xshare/netxms/images/condition.png Xshare/netxms/images/generic_printer.ico Xshare/netxms/images/generic_printer.png Xshare/netxms/images/interface.ico Xshare/netxms/images/interface.png Xshare/netxms/images/network.ico Xshare/netxms/images/network.png Xshare/netxms/images/network_service.ico Xshare/netxms/images/network_service.png Xshare/netxms/images/node.ico Xshare/netxms/images/node.png Xshare/netxms/images/node_group.ico Xshare/netxms/images/node_group.png Xshare/netxms/images/service.ico Xshare/netxms/images/service.png Xshare/netxms/images/subnet.ico Xshare/netxms/images/subnet.png Xshare/netxms/images/template.ico Xshare/netxms/images/template.png Xshare/netxms/images/template_group.ico Xshare/netxms/images/template_group.png Xshare/netxms/images/template_root.ico Xshare/netxms/images/template_root.png Xshare/netxms/images/vpnc.ico Xshare/netxms/images/vpnc.png Xshare/netxms/images/zone.ico Xshare/netxms/images/zone.png Xshare/netxms/mibs/ARCADA-MIB.txt Xshare/netxms/mibs/BGP4-MIB.txt Xshare/netxms/mibs/BN-IF-EXTENSIONS-MIB.txt Xshare/netxms/mibs/BRIDGE-MIB.txt Xshare/netxms/mibs/CDX-6500-COMMON-MIB.txt Xshare/netxms/mibs/CHECKPOINT-NG-MIB.txt Xshare/netxms/mibs/CISCO-C2900-MIB.txt Xshare/netxms/mibs/CISCO-CDP-MIB.txt Xshare/netxms/mibs/CISCO-ENVMON-MIB.txt Xshare/netxms/mibs/CISCO-MEMORY-POOL-MIB.txt Xshare/netxms/mibs/CISCO-PING-MIB.txt Xshare/netxms/mibs/CISCO-PROCESS-MIB.txt Xshare/netxms/mibs/CISCO-PRODUCTS-MIB.txt Xshare/netxms/mibs/CISCO-QOS-PIB-MIB.txt Xshare/netxms/mibs/CISCO-SMI.txt Xshare/netxms/mibs/CISCO-SYSLOG-MIB.txt Xshare/netxms/mibs/CISCO-TC.txt Xshare/netxms/mibs/CISCO-TCP-MIB.txt Xshare/netxms/mibs/CISCO-VTP-MIB.txt Xshare/netxms/mibs/COSINE-GLOBAL-REG.txt Xshare/netxms/mibs/COSINE-InVision-MIB.txt Xshare/netxms/mibs/COSINE-ORION-MIB.txt Xshare/netxms/mibs/DS1-MIB.txt Xshare/netxms/mibs/DS3-MIB.txt Xshare/netxms/mibs/ENTITY-MIB.txt Xshare/netxms/mibs/FIBRE-CHANNEL-FE-MIB.txt Xshare/netxms/mibs/HOST-RESOURCES-MIB.txt Xshare/netxms/mibs/HOST-RESOURCES-TYPES.txt Xshare/netxms/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt Xshare/netxms/mibs/IANA-LANGUAGE-MIB.txt Xshare/netxms/mibs/IANAifType-MIB.txt Xshare/netxms/mibs/IEEE8021-PAE-MIB.txt Xshare/netxms/mibs/IEEE802dot11-MIB.txt Xshare/netxms/mibs/IF-MIB.txt Xshare/netxms/mibs/INET-ADDRESS-MIB.txt Xshare/netxms/mibs/IP-MIB.txt Xshare/netxms/mibs/LLDP-MIB.txt Xshare/netxms/mibs/MAU-MIB.txt Xshare/netxms/mibs/MTA-MIB.txt Xshare/netxms/mibs/NET-SNMP-AGENT-MIB.txt Xshare/netxms/mibs/NET-SNMP-MIB.txt Xshare/netxms/mibs/NET-SNMP-MONITOR-MIB.txt Xshare/netxms/mibs/NET-SNMP-SYSTEM-MIB.txt Xshare/netxms/mibs/NET-SNMP-TC.txt Xshare/netxms/mibs/NETSCREEN-ADDR-MIB.txt Xshare/netxms/mibs/NETSCREEN-INTERFACE-MIB.txt Xshare/netxms/mibs/NETSCREEN-NAT-MIB.txt Xshare/netxms/mibs/NETSCREEN-PRODUCTS-MIB.txt Xshare/netxms/mibs/NETSCREEN-RESOURCE-MIB.txt Xshare/netxms/mibs/NETSCREEN-SCHEDULE-MIB.txt Xshare/netxms/mibs/NETSCREEN-SERVICE-MIB.txt Xshare/netxms/mibs/NETSCREEN-SMI.txt Xshare/netxms/mibs/NETSCREEN-TRAP-MIB.txt Xshare/netxms/mibs/NETSCREEN-VPN-MON-MIB.txt Xshare/netxms/mibs/NETSCREEN-VR-MIB.txt Xshare/netxms/mibs/NETSCREEN-VSYS-MIB.txt Xshare/netxms/mibs/NETWORK-SERVICES-MIB.txt Xshare/netxms/mibs/NOKIA-IPSO-REGISTRATION-MIB.txt Xshare/netxms/mibs/NOKIA-IPSO-SYSTEM-MIB.txt Xshare/netxms/mibs/OPTIMUX-MIB.txt Xshare/netxms/mibs/OSPF-MIB.txt Xshare/netxms/mibs/PerfHist-TC-MIB.txt Xshare/netxms/mibs/PowerNet-MIB.txt Xshare/netxms/mibs/Printer-MIB.txt Xshare/netxms/mibs/RAPID-CITY.txt Xshare/netxms/mibs/RFC-1212.txt Xshare/netxms/mibs/RFC-1215.txt Xshare/netxms/mibs/RFC1155-SMI.txt Xshare/netxms/mibs/RFC1213-MIB.txt Xshare/netxms/mibs/RMON-MIB.txt Xshare/netxms/mibs/RS-232-MIB.txt Xshare/netxms/mibs/S5-CHASSIS-MIB.txt Xshare/netxms/mibs/S5-CHASSIS-TRAP-MIB.txt Xshare/netxms/mibs/S5-ETH-MULTISEG-TOPOLOGY-MIB.txt Xshare/netxms/mibs/S5-ETH-REDUNDANT-LINKS-MIB.txt Xshare/netxms/mibs/S5-ETHERNET-COMMON-MIB.txt Xshare/netxms/mibs/S5-ETHERNET-MIB.txt Xshare/netxms/mibs/S5-ETHERNET-TRAP-MIB.txt Xshare/netxms/mibs/S5-REG-MIB.txt Xshare/netxms/mibs/S5-ROOT-MIB.txt Xshare/netxms/mibs/S5-SWITCH-BAYSECURE-MIB.txt Xshare/netxms/mibs/S5-TCS-MIB.txt Xshare/netxms/mibs/SNMP-COMMUNITY-MIB.txt Xshare/netxms/mibs/SNMP-FRAMEWORK-MIB.txt Xshare/netxms/mibs/SNMP-PROXY-MIB.txt Xshare/netxms/mibs/SNMP-REPEATER-MIB.txt Xshare/netxms/mibs/SNMP-TARGET-MIB.txt Xshare/netxms/mibs/SNMP-USER-BASED-SM-MIB.txt Xshare/netxms/mibs/SNMPv2-CONF.txt Xshare/netxms/mibs/SNMPv2-MIB.txt Xshare/netxms/mibs/SNMPv2-SMI.txt Xshare/netxms/mibs/SNMPv2-TC.txt Xshare/netxms/mibs/SNMPv2-TM.txt Xshare/netxms/mibs/SW-MIB.txt Xshare/netxms/mibs/SYNOPTICS-COMMON-MIB.txt Xshare/netxms/mibs/SYNOPTICS-ROOT-MIB.txt Xshare/netxms/mibs/TCP-MIB.txt Xshare/netxms/mibs/TUNNEL-MIB.txt Xshare/netxms/mibs/UCD-DISKIO-MIB.txt Xshare/netxms/mibs/UCD-DLMOD-MIB.txt Xshare/netxms/mibs/UCD-IPFILTER-MIB.txt Xshare/netxms/mibs/UCD-IPFWACC-MIB.txt Xshare/netxms/mibs/UCD-SNMP-MIB.txt Xshare/netxms/mibs/UDP-MIB.txt Xshare/netxms/mibs/UPS-MIB.txt Xshare/netxms/mibs/USEC-MIB.txt Xshare/netxms/mibs/V2ADMIN-MIB.txt Xshare/netxms/mibs/WF-COM.txt Xshare/netxms/mibs/WWW-MIB.txt Xshare/netxms/mibs/netxms.mib Xshare/netxms/nxhttpd/alarms.js Xshare/netxms/nxhttpd/common.js Xshare/netxms/nxhttpd/ctrlpanel.js Xshare/netxms/nxhttpd/images/I.png Xshare/netxms/nxhttpd/images/L.png Xshare/netxms/nxhttpd/images/Lminus.png Xshare/netxms/nxhttpd/images/Lplus.png Xshare/netxms/nxhttpd/images/T.png Xshare/netxms/nxhttpd/images/Tminus.png Xshare/netxms/nxhttpd/images/Tplus.png Xshare/netxms/nxhttpd/images/ack.png Xshare/netxms/nxhttpd/images/blank.png Xshare/netxms/nxhttpd/images/buttons/normal/ack.png Xshare/netxms/nxhttpd/images/buttons/normal/add.png Xshare/netxms/nxhttpd/images/buttons/normal/cancel.png Xshare/netxms/nxhttpd/images/buttons/normal/delete.png Xshare/netxms/nxhttpd/images/buttons/normal/login.png Xshare/netxms/nxhttpd/images/buttons/normal/ok.png Xshare/netxms/nxhttpd/images/buttons/normal/terminate.png Xshare/netxms/nxhttpd/images/buttons/pressed/ack.png Xshare/netxms/nxhttpd/images/buttons/pressed/add.png Xshare/netxms/nxhttpd/images/buttons/pressed/cancel.png Xshare/netxms/nxhttpd/images/buttons/pressed/delete.png Xshare/netxms/nxhttpd/images/buttons/pressed/login.png Xshare/netxms/nxhttpd/images/buttons/pressed/ok.png Xshare/netxms/nxhttpd/images/buttons/pressed/terminate.png Xshare/netxms/nxhttpd/images/checkbox_off.png Xshare/netxms/nxhttpd/images/checkbox_on.png Xshare/netxms/nxhttpd/images/ctrlpanel/actions.png Xshare/netxms/nxhttpd/images/ctrlpanel/cert.png Xshare/netxms/nxhttpd/images/ctrlpanel/cfgvar.png Xshare/netxms/nxhttpd/images/ctrlpanel/ctrlpanel.png Xshare/netxms/nxhttpd/images/ctrlpanel/discovery.png Xshare/netxms/nxhttpd/images/ctrlpanel/epp.png Xshare/netxms/nxhttpd/images/ctrlpanel/group.png Xshare/netxms/nxhttpd/images/ctrlpanel/module.png Xshare/netxms/nxhttpd/images/ctrlpanel/objtools.png Xshare/netxms/nxhttpd/images/ctrlpanel/package.png Xshare/netxms/nxhttpd/images/ctrlpanel/scripts.png Xshare/netxms/nxhttpd/images/ctrlpanel/servercfg.png Xshare/netxms/nxhttpd/images/ctrlpanel/snmptrap.png Xshare/netxms/nxhttpd/images/ctrlpanel/user.png Xshare/netxms/nxhttpd/images/ctrlpanel/users.png Xshare/netxms/nxhttpd/images/delete.png Xshare/netxms/nxhttpd/images/document.png Xshare/netxms/nxhttpd/images/edit.png Xshare/netxms/nxhttpd/images/file.png Xshare/netxms/nxhttpd/images/foldericon.png Xshare/netxms/nxhttpd/images/graph.png Xshare/netxms/nxhttpd/images/login.png Xshare/netxms/nxhttpd/images/new.png Xshare/netxms/nxhttpd/images/objects/cluster.png Xshare/netxms/nxhttpd/images/objects/container.png Xshare/netxms/nxhttpd/images/objects/interface.png Xshare/netxms/nxhttpd/images/objects/network.png Xshare/netxms/nxhttpd/images/objects/node.png Xshare/netxms/nxhttpd/images/objects/service.png Xshare/netxms/nxhttpd/images/objects/subnet.png Xshare/netxms/nxhttpd/images/objects/template.png Xshare/netxms/nxhttpd/images/objects/template_group.png Xshare/netxms/nxhttpd/images/objects/template_root.png Xshare/netxms/nxhttpd/images/openfoldericon.png Xshare/netxms/nxhttpd/images/sort_down.png Xshare/netxms/nxhttpd/images/sort_up.png Xshare/netxms/nxhttpd/images/status/critical.png Xshare/netxms/nxhttpd/images/status/disabled.png Xshare/netxms/nxhttpd/images/status/major.png Xshare/netxms/nxhttpd/images/status/minor.png Xshare/netxms/nxhttpd/images/status/normal.png Xshare/netxms/nxhttpd/images/status/testing.png Xshare/netxms/nxhttpd/images/status/unknown.png Xshare/netxms/nxhttpd/images/status/unmanaged.png Xshare/netxms/nxhttpd/images/status/warning.png Xshare/netxms/nxhttpd/images/terminate.png Xshare/netxms/nxhttpd/netxms.css Xshare/netxms/nxhttpd/pngfix.js Xshare/netxms/nxhttpd/xloadtree.js Xshare/netxms/nxhttpd/xmlextras.js Xshare/netxms/nxhttpd/xtree.js Xshare/netxms/sql/dbinit_mssql.sql Xshare/netxms/sql/dbinit_mysql.sql Xshare/netxms/sql/dbinit_oracle.sql Xshare/netxms/sql/dbinit_pgsql.sql Xshare/netxms/sql/dbinit_sqlite.sql X@dirrm share/netxms/sql X@dirrm share/netxms/nxhttpd/images/status X@dirrm share/netxms/nxhttpd/images/objects X@dirrm share/netxms/nxhttpd/images/ctrlpanel X@dirrm share/netxms/nxhttpd/images/buttons/pressed X@dirrm share/netxms/nxhttpd/images/buttons/normal X@dirrm share/netxms/nxhttpd/images/buttons X@dirrm share/netxms/nxhttpd/images X@dirrm share/netxms/nxhttpd X@dirrm share/netxms/mibs X@dirrm share/netxms/images X@dirrm share/netxms/backgrounds X@dirrm share/netxms END-of-netxms/pkg-plist exit