diff options
author | chinsan <chinsan@FreeBSD.org> | 2011-02-24 01:45:16 +0800 |
---|---|---|
committer | chinsan <chinsan@FreeBSD.org> | 2011-02-24 01:45:16 +0800 |
commit | c00e915f39d8547b7bf5a55dcaced3d60019e344 (patch) | |
tree | 62e5d2f0d5c4bd0da40501554eafc73ecb559c26 /net-mgmt | |
parent | 5e186975c8667f0c6294862b01a02a8c520cb51d (diff) | |
download | freebsd-ports-gnome-c00e915f39d8547b7bf5a55dcaced3d60019e344.tar.gz freebsd-ports-gnome-c00e915f39d8547b7bf5a55dcaced3d60019e344.tar.zst freebsd-ports-gnome-c00e915f39d8547b7bf5a55dcaced3d60019e344.zip |
Add Icinga, an enterprise grade open source monitoring system which keeps
watch over networks and any conceivable network resource, notifies the user
of errors and recoveries and generates performance data for reporting.
Scalable and extensible, Icinga can monitor complex, large environments across
dispersed locations.
Icinga takes open source monitoring to the next level.
WWW: http://www.icinga.org/
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/icinga/Makefile | 133 | ||||
-rw-r--r-- | net-mgmt/icinga/distinfo | 2 | ||||
-rw-r--r-- | net-mgmt/icinga/files/icinga.in | 103 | ||||
-rw-r--r-- | net-mgmt/icinga/files/patch-Makefile.in | 60 | ||||
-rw-r--r-- | net-mgmt/icinga/files/patch-base-Makefile.in | 15 | ||||
-rw-r--r-- | net-mgmt/icinga/files/patch-cgi-Makefile.in | 14 | ||||
-rw-r--r-- | net-mgmt/icinga/files/patch-configure.in | 53 | ||||
-rw-r--r-- | net-mgmt/icinga/files/patch-contrib-Makefile.in | 17 | ||||
-rw-r--r-- | net-mgmt/icinga/files/patch-include-locations.h.in | 11 | ||||
-rw-r--r-- | net-mgmt/icinga/files/patch-sample-config-template-object-localhost.cfg.in | 40 | ||||
-rw-r--r-- | net-mgmt/icinga/files/patch-sample-config-template-object-templates.cfg.in | 26 | ||||
-rw-r--r-- | net-mgmt/icinga/files/pkg-deinstall.in | 22 | ||||
-rw-r--r-- | net-mgmt/icinga/files/pkg-install.in | 74 | ||||
-rw-r--r-- | net-mgmt/icinga/files/pkg-message.in | 32 | ||||
-rw-r--r-- | net-mgmt/icinga/pkg-descr | 8 | ||||
-rw-r--r-- | net-mgmt/icinga/pkg-plist | 1204 |
17 files changed, 1815 insertions, 0 deletions
diff --git a/net-mgmt/Makefile b/net-mgmt/Makefile index 4f81689aaf6b..073093358a78 100644 --- a/net-mgmt/Makefile +++ b/net-mgmt/Makefile @@ -80,6 +80,7 @@ SUBDIR += grepip SUBDIR += gsnmp SUBDIR += horde-nic + SUBDIR += icinga SUBDIR += icmpmonitor SUBDIR += icmpquery SUBDIR += ifgraph diff --git a/net-mgmt/icinga/Makefile b/net-mgmt/icinga/Makefile new file mode 100644 index 000000000000..c48ed59bec2e --- /dev/null +++ b/net-mgmt/icinga/Makefile @@ -0,0 +1,133 @@ +# New ports collection makefile for: icinga +# Date created: 2012/02/10 +# Whom: chinsan +# +# $FreeBSD$ +# + +PORTNAME= icinga +PORTVERSION= 1.3.0 +CATEGORIES= net-mgmt +MASTER_SITES= SF + +MAINTAINER= chinsan@FreeBSD.org +COMMENT= Enterprise grade open source monitoring system based on nagios + +LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd +RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net-mgmt/nagios-plugins + +LICENSE= GPLv2 + +USE_ICONV= yes +USE_PERL5_BUILD= yes +USE_AUTOTOOLS= autoconf libltdl +USE_RC_SUBR= icinga + +OPTIONS= EMBEDDED_PERL "Enable embedded Perl [requires Perl 5.8.0+]" off \ + NANOSLEEP "Use nanosleep in event timing" off \ + EVENT_BROKER "Enable event broker functionality" off \ + UNHANDLED_HACK "Display passive checks in unhandled queries" off \ + +GNU_CONFIGURE= yes + +ICINGAUSER?= icinga +ICINGAGROUP?= icinga +ICINGADIR?= /var/spool/icinga + +ICINGAUID= 183 +ICINGAGID= ${ICINGAUID} + +ICINGAWWWDIR?= www/icinga +ICINGAHTMURL?= /icinga +ICINGACGIURL?= ${ICINGAHTMURL}/cgi-bin + +.include <bsd.port.pre.mk> + +CPPFLAGS= -I${LOCALBASE}/include -fPIC +CFLAGS+= ${CPPFLAGS} + +CONFIGURE_ARGS= --with-command-user=${ICINGAUSER} \ + --with-command-group=${WWWGRP} \ + --with-icinga-user=${ICINGAUSER} \ + --with-icinga-group=${ICINGAGROUP} \ + --with-htmurl=${ICINGAHTMURL} \ + --with-cgiurl=${ICINGACGIURL} \ + --sbindir=${PREFIX}/${ICINGAWWWDIR}/cgi-bin \ + --libexecdir=${PREFIX}/libexec/icinga \ + --datarootdir=${PREFIX}/${ICINGAWWWDIR} \ + --datadir=${PREFIX}/${ICINGAWWWDIR} \ + --sysconfdir=${PREFIX}/etc/icinga \ + --localstatedir=${ICINGADIR} \ + --with-httpd-conf=${PREFIX}/etc \ + --with-checkresult-dir=${ICINGADIR}/checkresults \ + --disable-statuswrl + +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + LIBS="-L${LOCALBASE}/lib" \ + PERL=${PERL} + +MAKE_JOBS_UNSAFE= yes + +INSTALL_TARGET= install install-commandmode install-config + +PLIST_SUB= ICINGADIR=${ICINGADIR} \ + ICINGAWWWDIR=${ICINGAWWWDIR} \ + ICINGAUSER=${ICINGAUSER} \ + ICINGAGROUP=${ICINGAGROUP} \ + ICINGAUID=${ICINGAUID} \ + ICINGAGID=${ICINGAGID} \ + ICINGAHTMURL=${ICINGAHTMURL} \ + ICINGACGIURL=${ICINGACGIURL} \ + WWWGRP=${WWWGRP} + +SUB_FILES= pkg-install \ + pkg-deinstall \ + pkg-message + +# XXX: Don't remove PREFIX from SUB_LIST here. +SUB_LIST= PREFIX=${PREFIX} \ + ${PLIST_SUB} + +USE_PHP= yes + +.if defined(WITH_EMBEDDED_PERL) +USE_PERL5= 5.8.0+ +CONFIGURE_ARGS+= --enable-embedded-perl \ + --with-perlcache +PLIST_SUB+= EMBEDDED_PERL="" +.else +PLIST_SUB+= EMBEDDED_PERL="@comment " +.endif + +.if defined(WITH_NANOSLEEP) +CONFIGURE_ARGS+= --enable-nanosleep +.endif + +.if defined(WITH_EVENT_BROKER) +CONFIGURE_ARGS+= --enable-event-broker +.else +CONFIGURE_ARGS+= --disable-event-broker +.endif + +post-patch: +.if defined(WITH_UNHANDLED_HACK) + @${REINPLACE_CMD} -e 's#;serviceprops=42\&#;serviceprops=10\&#g' \ + -e 's#;hostprops=42\"#;hostprops=10\"#g' ${WRKSRC}/html/menu.html.in + @${REINPLACE_CMD} -e 's#Linux#FreeBSD#' ${WRKSRC}/sample-config/icinga.cfg.in + @${REINPLACE_CMD} -e 's#775#755#g; s#664#644#g' ${WRKSRC}/html/Makefile.in + @${REINPLACE_CMD} -e 's#/bin/ping#/sbin/ping#' ${WRKSRC}/* + @${FIND} ${WRKSRC} -name '*.orig' -delete +.endif + +pre-su-install: + @${SH} ${PKGINSTALL} ${DISTNAME} PRE-INSTALL + +post-install: + @${CHMOD} 775 ${ICINGADIR} ${ICINGADIR}/archives ${ICINGADIR}/checkresults ${ICINGADIR}/rw + @${CHOWN} ${ICINGAUSER}:${ICINGAGROUP} ${ICINGADIR} ${ICINGADIR}/archives ${ICINGADIR}/checkresults + @${CHOWN} ${ICINGAUSER}:${WWWGRP} ${ICINGADIR}/rw + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.post.mk> diff --git a/net-mgmt/icinga/distinfo b/net-mgmt/icinga/distinfo new file mode 100644 index 000000000000..7f881adce153 --- /dev/null +++ b/net-mgmt/icinga/distinfo @@ -0,0 +1,2 @@ +SHA256 (icinga-1.3.0.tar.gz) = eec3b6ffcc7bdac7c84d08d6bc8d899ca3ccfd40f063f0fdc0fb5e386ee086f4 +SIZE (icinga-1.3.0.tar.gz) = 12084804 diff --git a/net-mgmt/icinga/files/icinga.in b/net-mgmt/icinga/files/icinga.in new file mode 100644 index 000000000000..7703a68061b3 --- /dev/null +++ b/net-mgmt/icinga/files/icinga.in @@ -0,0 +1,103 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: icinga +# REQUIRE: DAEMON +# BEFORE: LOGIN +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable icinga: +# icinga_enable (bool): Set to "NO" by default. +# Set it to "YES" to enable icinga. +# icinga_precache (bool): Set to "NO" by default. +# Set it to "YES" to enable pre-caching. +# icinga_flags (str): Set to "" by default. +# icinga_configfile (str): Set to "%%PREFIX%%/etc/icinga/icinga.cfg" by default. +# + +. /etc/rc.subr + +name="icinga" +rcvar=`set_rcvar` + +command="%%PREFIX%%/bin/icinga" +command_args="-d" +extra_commands="reload" +pidfile="%%ICINGADIR%%/icinga.lock" +icinga_user="%%ICINGAUSER%%" + +start_precmd="start_precmd" +stop_postcmd="stop_postcmd" +restart_precmd="icinga_checkconfig" +reload_precmd="reload_precmd" +sig_reload=HUP + +[ -z "${icinga_enable}" ] && icinga_enable="NO" +[ -z "${icinga_configfile}" ] && icinga_configfile="%%PREFIX%%/etc/icinga/icinga.cfg" +[ -z "${icinga_precache}" ] && icinga_precache="NO" + +load_rc_config "${name}" + +required_files="${icinga_configfile}" +command_args="${command_args} ${icinga_configfile}" + +icinga_cacheconfig() { + if ! checkyesno icinga_precache; then + return 0 + fi + + echo -n "Pre-Caching icinga configuration: " + ${command} -pv ${icinga_configfile} 2>&1 >/dev/null + if [ $? != 0 ]; then + echo "FAILED" + ${command} -v ${icinga_configfile} + return 1 + else + command_args="-u -x ${command_args}" + echo "OK" + fi +} + +icinga_checkconfig() { + echo -n "Performing sanity check of icinga configuration: " + ${command} -v ${icinga_configfile} 2>&1 >/dev/null + if [ $? != 0 ]; then + echo "FAILED" + ${command} -v ${icinga_configfile} + return 1 + else + echo "OK" + fi +} + +reload_precmd() { + if ! icinga_checkconfig; then + return 1 + fi + + if ! icinga_cacheconfig; then + return 1 + fi +} + +start_precmd() { + if ! icinga_checkconfig; then + return 1 + fi + + if ! icinga_cacheconfig; then + return 1 + fi + + su -m "${icinga_user}" -c "touch \"%%ICINGADIR%%/icinga.log\" \"%%ICINGADIR%%/status.sav\"" + rm -f "%%ICINGADIR%%/rw/icinga.cmd" +} + +stop_postcmd() { + rm -f "%%ICINGADIR%%/icinga.tmp" "%%ICINGADIR%%/rw/icinga.cmd" +} + +run_rc_command "$1" diff --git a/net-mgmt/icinga/files/patch-Makefile.in b/net-mgmt/icinga/files/patch-Makefile.in new file mode 100644 index 000000000000..d321c817ef25 --- /dev/null +++ b/net-mgmt/icinga/files/patch-Makefile.in @@ -0,0 +1,60 @@ +--- Makefile.in~ 2011-02-15 21:28:41.000000000 +0800 ++++ Makefile.in 2011-02-24 00:46:40.000000000 +0800 +@@ -375,12 +375,12 @@ + $(MAKE) install-basic + + install-basic: +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBEXECDIR) ++ $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBEXECDIR) + $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR) + $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)/archives + $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CHECKRESULTDIR) + if [ $(INSTALLPERLSTUFF) = yes ]; then \ +- $(INSTALL) -m 664 $(INSTALL_OPTS) p1.pl $(DESTDIR)$(BINDIR); \ ++ $(INSTALL) -m 644 $(INSTALL_OPTS) p1.pl $(DESTDIR)$(BINDIR); \ + fi; + + @echo "" +@@ -409,20 +409,20 @@ + + + install-config: +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR) +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR)/objects +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/icinga.cfg $(DESTDIR)$(CFGDIR)/icinga.cfg +- $(INSTALL) -b -m 660 $(INSTALL_OPTS) sample-config/resource.cfg $(DESTDIR)$(CFGDIR)/resource.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/cgi.cfg $(DESTDIR)$(CFGDIR)/cgi.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/cgiauth.cfg $(DESTDIR)$(CFGDIR)/cgiauth.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/templates.cfg $(DESTDIR)$(CFGDIR)/objects/templates.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/commands.cfg $(DESTDIR)$(CFGDIR)/objects/commands.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/contacts.cfg $(DESTDIR)$(CFGDIR)/objects/contacts.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/timeperiods.cfg $(DESTDIR)$(CFGDIR)/objects/timeperiods.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/localhost.cfg $(DESTDIR)$(CFGDIR)/objects/localhost.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/windows.cfg $(DESTDIR)$(CFGDIR)/objects/windows.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/printer.cfg $(DESTDIR)$(CFGDIR)/objects/printer.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/switch.cfg $(DESTDIR)$(CFGDIR)/objects/switch.cfg ++ $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR) ++ $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR)/objects ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/icinga.cfg $(DESTDIR)$(CFGDIR)/icinga.cfg-sample ++ $(INSTALL) -b -m 640 $(INSTALL_OPTS) sample-config/resource.cfg $(DESTDIR)$(CFGDIR)/resource.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/cgi.cfg $(DESTDIR)$(CFGDIR)/cgi.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/cgiauth.cfg $(DESTDIR)$(CFGDIR)/cgiauth.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/template-object/templates.cfg $(DESTDIR)$(CFGDIR)/objects/templates.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/template-object/commands.cfg $(DESTDIR)$(CFGDIR)/objects/commands.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/template-object/contacts.cfg $(DESTDIR)$(CFGDIR)/objects/contacts.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/template-object/timeperiods.cfg $(DESTDIR)$(CFGDIR)/objects/timeperiods.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/template-object/localhost.cfg $(DESTDIR)$(CFGDIR)/objects/localhost.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/template-object/windows.cfg $(DESTDIR)$(CFGDIR)/objects/windows.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/template-object/printer.cfg $(DESTDIR)$(CFGDIR)/objects/printer.cfg-sample ++ $(INSTALL) -b -m 644 $(INSTALL_OPTS) sample-config/template-object/switch.cfg $(DESTDIR)$(CFGDIR)/objects/switch.cfg-sample + + @echo "" + @echo "*** Config files installed ***" +@@ -486,7 +486,6 @@ + + install-commandmode: + $(INSTALL) -m 775 $(COMMAND_OPTS) -d $(DESTDIR)$(LOGDIR)/rw +- chmod g+s $(DESTDIR)$(LOGDIR)/rw + + @echo "" + @echo "*** External command directory configured ***" diff --git a/net-mgmt/icinga/files/patch-base-Makefile.in b/net-mgmt/icinga/files/patch-base-Makefile.in new file mode 100644 index 000000000000..8585cc546a7e --- /dev/null +++ b/net-mgmt/icinga/files/patch-base-Makefile.in @@ -0,0 +1,15 @@ +--- base/Makefile.in~ 2010-10-23 01:22:32.000000000 +0800 ++++ base/Makefile.in 2011-02-16 13:42:58.000000000 +0800 +@@ -205,9 +205,9 @@ + $(MAKE) install-basic + + install-basic: +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR) +- $(INSTALL) -m 774 $(INSTALL_OPTS) @icinga_name@ $(DESTDIR)$(BINDIR) +- $(INSTALL) -m 774 $(INSTALL_OPTS) @icingastats_name@ $(DESTDIR)$(BINDIR) ++ $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR) ++ $(INSTALL) -m 755 $(INSTALL_OPTS) @icinga_name@ $(DESTDIR)$(BINDIR) ++ $(INSTALL) -m 755 $(INSTALL_OPTS) @icingastats_name@ $(DESTDIR)$(BINDIR) + + strip-post-install: + $(STRIP) $(DESTDIR)$(BINDIR)/@icinga_name@ diff --git a/net-mgmt/icinga/files/patch-cgi-Makefile.in b/net-mgmt/icinga/files/patch-cgi-Makefile.in new file mode 100644 index 000000000000..13a4564e6917 --- /dev/null +++ b/net-mgmt/icinga/files/patch-cgi-Makefile.in @@ -0,0 +1,14 @@ +--- cgi/Makefile.in.orig Wed Dec 13 02:57:57 2006 ++++ cgi/Makefile.in Fri Jul 20 13:35:18 2007 +@@ -190,9 +190,9 @@ + $(MAKE) install-basic + + install-basic: +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CGIDIR) ++ $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(CGIDIR) + for file in *.cgi; do \ +- $(INSTALL) -m 775 $(INSTALL_OPTS) $$file $(DESTDIR)$(CGIDIR); \ ++ $(INSTALL) -m 755 $(INSTALL_OPTS) $$file $(DESTDIR)$(CGIDIR); \ + done + + strip-post-install: diff --git a/net-mgmt/icinga/files/patch-configure.in b/net-mgmt/icinga/files/patch-configure.in new file mode 100644 index 000000000000..3d9c375e735f --- /dev/null +++ b/net-mgmt/icinga/files/patch-configure.in @@ -0,0 +1,53 @@ +--- configure.in~ 2010-10-23 01:22:32.000000000 +0800 ++++ configure.in 2011-02-16 14:10:52.000000000 +0800 +@@ -6,7 +6,6 @@ + + AC_INIT(base/icinga.c) + AC_CONFIG_HEADER(include/config.h include/snprintf.h) +-AC_PREFIX_DEFAULT(/usr/local/icinga) + + PKG_NAME=icinga-core + PKG_VERSION="1.2.1" +@@ -136,7 +135,15 @@ + dnl Test for pthreads support - taken from ICU FreeBSD Port configure script + THREADLIBS="" + have_pthreads="no" ++have_thr="no" + ++dnl Prefer libthr(3) over libpthread(3) due to serious process hanging issues ++AC_CHECK_LIB(thr,pthread_create) ++if test $ac_cv_lib_thr_pthread_create = yes; then ++ THREADLIBS="-lthr" ++ have_pthreads="yes" ++ have_thr="yes" ++else + dnl FreeBSD: Try ports/linuxthreads first - Mammad Zadeh <mammad@yahoo-inc.com> + dnl FreeBSD -pthread check - Jonathan McDowell <noodles@earth.li> + AC_DEFUN([AC_PTHREAD_FREEBSD],[ +@@ -197,6 +204,7 @@ + if test $have_pthreads = "no"; then + AC_PTHREAD_FREEBSD + fi ++fi + + AC_SUBST(THREADLIBS) + +@@ -215,7 +223,7 @@ + AC_DEFINE_UNQUOTED(DEFAULT_NAGIOS_USER,"$icinga_user",[user name to run nagios]) + AC_DEFINE_UNQUOTED(DEFAULT_ICINGA_GROUP,"$icinga_grp",[group name to run nagios]) + AC_DEFINE_UNQUOTED(DEFAULT_NAGIOS_GROUP,"$icinga_grp",[group name to run nagios]) +-INSTALL_OPTS="-o $icinga_user -g $icinga_grp" ++INSTALL_OPTS="-o root -g wheel" + AC_SUBST(INSTALL_OPTS) + + AC_ARG_WITH(command_user,AC_HELP_STRING([--with-command-user=<user>],[sets user name for command access]),command_user=$withval,command_user=$icinga_user) +@@ -827,6 +835,9 @@ + + AC_DEFINE_UNQUOTED(EMBEDDEDPERL,,[Is embedded Perl being compiled in?]) + PERLLIBS="`perl -MExtUtils::Embed -e ldopts`" ++ if test x$have_thr = xyes; then ++ PERLLIBS="`echo $PERLLIBS | sed 's#pthread #lthr #'`" ++ fi + PERLDIR="`perl -MConfig -e 'print $Config{installsitearch}'`" + CFLAGS="${CFLAGS} `perl -MExtUtils::Embed -e ccopts`" + USEPERL=yes diff --git a/net-mgmt/icinga/files/patch-contrib-Makefile.in b/net-mgmt/icinga/files/patch-contrib-Makefile.in new file mode 100644 index 000000000000..dd80e3019859 --- /dev/null +++ b/net-mgmt/icinga/files/patch-contrib-Makefile.in @@ -0,0 +1,17 @@ +--- contrib/Makefile.in.orig Tue Nov 15 12:19:36 2005 ++++ contrib/Makefile.in Wed Dec 28 17:49:25 2005 +@@ -46,10 +46,10 @@ + devclean: distclean + + install: +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CGIDIR) +- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR) +- for f in $(CGIS); do $(INSTALL) -m 775 $(INSTALL_OPTS) $$f $(DESTDIR)$(CGIDIR); done +- for f in $(UTILS); do $(INSTALL) -m 775 $(INSTALL_OPTS) $$f $(DESTDIR)$(BINDIR); done ++ $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(CGIDIR) ++ $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR) ++ for f in $(CGIS); do $(INSTALL) -m 755 $(INSTALL_OPTS) $$f $(DESTDIR)$(CGIDIR); done ++ for f in $(UTILS); do $(INSTALL) -m 755 $(INSTALL_OPTS) $$f $(DESTDIR)$(BINDIR); done + + ############################################################################## + # rules and dependencies for actual target programs diff --git a/net-mgmt/icinga/files/patch-include-locations.h.in b/net-mgmt/icinga/files/patch-include-locations.h.in new file mode 100644 index 000000000000..a8bffb11bcc0 --- /dev/null +++ b/net-mgmt/icinga/files/patch-include-locations.h.in @@ -0,0 +1,11 @@ +--- include/locations.h.in.orig Tue May 1 08:15:57 2007 ++++ include/locations.h.in Fri Jul 20 15:52:49 2007 +@@ -20,7 +20,7 @@ + + #define DEFAULT_TEMP_FILE "@localstatedir@/tempfile" + #define DEFAULT_TEMP_PATH "/tmp" +-#define DEFAULT_CHECK_RESULT_PATH "@localstatedir@/spool/checkresults" ++#define DEFAULT_CHECK_RESULT_PATH "@localstatedir@/checkresults" + #define DEFAULT_STATUS_FILE "@localstatedir@/status.dat" + #define DEFAULT_LOG_FILE "@localstatedir@/nagios.log" + #define DEFAULT_LOG_ARCHIVE_PATH "@localstatedir@/archives/" diff --git a/net-mgmt/icinga/files/patch-sample-config-template-object-localhost.cfg.in b/net-mgmt/icinga/files/patch-sample-config-template-object-localhost.cfg.in new file mode 100644 index 000000000000..3a9a5b6cab7c --- /dev/null +++ b/net-mgmt/icinga/files/patch-sample-config-template-object-localhost.cfg.in @@ -0,0 +1,40 @@ +--- sample-config/template-object/localhost.cfg.in.orig Sun Jun 10 02:13:05 2007 ++++ sample-config/template-object/localhost.cfg.in Fri Jul 20 13:46:46 2007 +@@ -5,7 +5,7 @@ + # + # NOTE: This config file is intended to serve as an *extremely* simple + # example of how you can create configuration entries to monitor +-# the local (Linux) machine. ++# the local (FreeBSD) machine. + # + ############################################################################### + +@@ -23,9 +23,9 @@ + # Define a host for the local machine + + define host{ +- use linux-server ; Name of host template to use ++ use freebsd-server ; Name of host template to use + ; This host definition will inherit all variables that are defined +- ; in (or inherited by) the linux-server host template definition. ++ ; in (or inherited by) the freebsd-server host template definition. + host_name localhost + alias localhost + address 127.0.0.1 +@@ -41,12 +41,12 @@ + ############################################################################### + ############################################################################### + +-# Define an optional hostgroup for Linux machines ++# Define an optional hostgroup for FreeBSD machines + + define hostgroup{ +- hostgroup_name linux-servers ; The name of the hostgroup +- alias Linux Servers ; Long name of the group +- members localhost ; Comma separated list of hosts that belong to this group ++ hostgroup_name freebsd-servers ; The name of the hostgroup ++ alias FreeBSD Servers ; Long name of the group ++ members localhost ; Comma separated list of hosts that belong to this group + } + + diff --git a/net-mgmt/icinga/files/patch-sample-config-template-object-templates.cfg.in b/net-mgmt/icinga/files/patch-sample-config-template-object-templates.cfg.in new file mode 100644 index 000000000000..280be54aed9b --- /dev/null +++ b/net-mgmt/icinga/files/patch-sample-config-template-object-templates.cfg.in @@ -0,0 +1,26 @@ +--- sample-config/template-object/templates.cfg.in.orig Fri Jul 20 13:46:57 2007 ++++ sample-config/template-object/templates.cfg.in Fri Jul 20 13:47:52 2007 +@@ -63,17 +63,17 @@ + } + + +-# Linux host definition template - This is NOT a real host, just a template! ++# FreeBSD host definition template - This is NOT a real host, just a template! + + define host{ +- name linux-server ; The name of this host template ++ name freebsd-server ; The name of this host template + use generic-host ; This template inherits other values from the generic-host template +- check_period 24x7 ; By default, Linux hosts are checked round the clock ++ check_period 24x7 ; By default, FreeBSD hosts are checked round the clock + check_interval 5 ; Actively check the host every 5 minutes + retry_interval 1 ; Schedule host check retries at 1 minute intervals +- max_check_attempts 10 ; Check each Linux host 10 times (max) +- check_command check-host-alive ; Default command to check Linux hosts +- notification_period workhours ; Linux admins hate to be woken up, so we only notify during the day ++ max_check_attempts 10 ; Check each FreeBSD host 10 times (max) ++ check_command check-host-alive ; Default command to check FreeBSD hosts ++ notification_period workhours ; FreeBSD admins hate to be woken up, so we only notify during the day + ; Note that the notification_period variable is being overridden from + ; the value that is inherited from the generic-host template! + notification_interval 120 ; Resend notifications every 2 hours diff --git a/net-mgmt/icinga/files/pkg-deinstall.in b/net-mgmt/icinga/files/pkg-deinstall.in new file mode 100644 index 000000000000..3352b4809424 --- /dev/null +++ b/net-mgmt/icinga/files/pkg-deinstall.in @@ -0,0 +1,22 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +ICINGADIR=%%ICINGADIR%% +ICINGAUSER=%%ICINGAUSER%% +ICINGAGROUP=%%ICINGAGROUP%% + +if [ "$2" = "POST-DEINSTALL" ]; then + if /usr/sbin/pw group show "${ICINGAGROUP}" 2>&1 >/dev/null; then + echo "You should manually remove the \"${ICINGAGROUP}\" group." + fi + + if /usr/sbin/pw user show "${ICINGAUSER}" 2>&1 >/dev/null; then + echo "You should manually remove the \"${ICINGAUSER}\" user." + fi + + if [ -e "${ICINGADIR}" ]; then + echo "You should manually remove the \"${ICINGADIR}\" directory." + fi +fi diff --git a/net-mgmt/icinga/files/pkg-install.in b/net-mgmt/icinga/files/pkg-install.in new file mode 100644 index 000000000000..73073fe924ad --- /dev/null +++ b/net-mgmt/icinga/files/pkg-install.in @@ -0,0 +1,74 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +ICINGADIR=%%ICINGADIR%% +ICINGAUSER=%%ICINGAUSER%% +ICINGAGROUP=%%ICINGAGROUP%% +ICINGAUID=%%ICINGAUID%% +ICINGAGID=%%ICINGAGID%% + +ask() { + local question default answer + + question=$1 + default=$2 + if [ -z "${PACKAGE_BUILDING}" ]; then + read -p "${question} [${default}]? " answer + fi + if [ "x${answer}" = "x" ]; then + answer=${default} + fi + echo ${answer} +} + +yesno() { + local default question answer + + question=$1 + default=$2 + while :; do + answer=$(ask "${question}" "${default}") + case "${answer}" in + [Yy][Ee][Ss]|[Yy]) + return 0 + ;; + [Nn][Oo]|[Nn]) + return 1 + ;; + esac + echo "Please answer yes or no." + done +} + +if [ "$2" = "PRE-INSTALL" ]; then + if /usr/sbin/pw group show "${ICINGAGROUP}" 2>&1 >/dev/null; then + echo "You already have a \"${ICINGAGROUP}\" group, so I will use it." + else + echo "You need a \"${ICINGAGROUP}\" group." + if yesno "Would you like me to create it" "YES"; then + /usr/sbin/pw groupadd "${ICINGAGROUP}" -g "${ICINGAGID}" -h - || \ + /usr/sbin/pw groupadd "${ICINGAGROUP}" -h - || exit + echo "Done." + else + echo "Please create the \"${ICINGAGROUP}\" group manually and try again." + exit 1 + fi + fi + + if /usr/sbin/pw user show "${ICINGAUSER}" 2>&1 >/dev/null; then + echo "You already have a \"${ICINGAUSER}\" user, so I will use it." + else + echo "You need a \"${ICINGAUSER}\" user." + if yesno "Would you like me to create it" "YES"; then + /usr/sbin/pw useradd "${ICINGAUSER}" -u "${ICINGAUID}" -g "${ICINGAGROUP}" -h - -d "${ICINGADIR}" \ + -s /sbin/nologin -c "Icinga pseudo-user" || \ + /usr/sbin/pw useradd "${ICINGAUSER}" -g "${ICINGAGROUP}" -h - -d "${ICINGADIR}" \ + -s /sbin/nologin -c "Icinga pseudo-user" || exit + else + echo "Please create the \"${ICINGAUSER}\" user manually and try again." + exit 1 + fi + fi +fi diff --git a/net-mgmt/icinga/files/pkg-message.in b/net-mgmt/icinga/files/pkg-message.in new file mode 100644 index 000000000000..8ae89c4b9477 --- /dev/null +++ b/net-mgmt/icinga/files/pkg-message.in @@ -0,0 +1,32 @@ +********************************************************************** + + Enable Icinga in /etc/rc.conf with the following line: + + icinga_enable="YES" + + Configuration templates are available in %%PREFIX%%/etc/icinga as + *.cfg-sample files. Copy them to *.cfg files where required and + edit to suit your needs. Documentation is available in HTML form + in %%PREFIX%%/%%ICINGAWWWDIR%%/docs. + + If you don't already have a web server running, you will need to + install and configure one to finish off your Icinga installation. + When used with Apache, the following should be sufficient to publish + the web component of Icinga (modify the allow list to suit): + + <Directory %%PREFIX%%/%%ICINGAWWWDIR%%> + Order deny,allow + Deny from all + Allow from 127.0.0.1 + php_flag engine on + php_admin_value open_basedir %%PREFIX%%/%%ICINGAWWWDIR%%/:%%ICINGADIR%%/ + </Directory> + + <Directory %%PREFIX%%/%%ICINGAWWWDIR%%/cgi-bin> + Options ExecCGI + </Directory> + + ScriptAlias %%ICINGACGIURL%%/ %%PREFIX%%/%%ICINGAWWWDIR%%/cgi-bin/ + Alias %%ICINGAHTMURL%%/ %%PREFIX%%/%%ICINGAWWWDIR%%/ + +********************************************************************** diff --git a/net-mgmt/icinga/pkg-descr b/net-mgmt/icinga/pkg-descr new file mode 100644 index 000000000000..ab183d52d580 --- /dev/null +++ b/net-mgmt/icinga/pkg-descr @@ -0,0 +1,8 @@ +Icinga is an enterprise grade open source monitoring system which keeps watch +over networks and any conceivable network resource, notifies the user of +errors and recoveries and generates performance data for reporting. Scalable +and extensible, Icinga can monitor complex, large environments across +dispersed locations. +Icinga takes open source monitoring to the next level. + +WWW: http://www.icinga.org/ diff --git a/net-mgmt/icinga/pkg-plist b/net-mgmt/icinga/pkg-plist new file mode 100644 index 000000000000..dd9263d7d1e2 --- /dev/null +++ b/net-mgmt/icinga/pkg-plist @@ -0,0 +1,1204 @@ +@exec mkdir -p %D/%%ICINGAWWWDIR%%/ssi +@exec mkdir -p %%ICINGADIR%%/archives +@exec mkdir -p %%ICINGADIR%%/checkresults +@exec mkdir -p %%ICINGADIR%%/rw +@exec chmod 775 %%ICINGADIR%% %%ICINGADIR%%/archives %%ICINGADIR%%/checkresults %%ICINGADIR%%/rw +@exec chown %%ICINGAUSER%%:%%ICINGAGROUP%% %%ICINGADIR%% %%ICINGADIR%%/archives %%ICINGADIR%%/checkresults +@exec chown %%ICINGAUSER%%:%%WWWGRP%% %%ICINGADIR%%/rw +bin/icinga +bin/icingastats +%%EMBEDDED_PERL%%bin/p1.pl +etc/icinga/cgi.cfg-sample +etc/icinga/cgiauth.cfg-sample +etc/icinga/icinga.cfg-sample +etc/icinga/objects/commands.cfg-sample +etc/icinga/objects/contacts.cfg-sample +etc/icinga/objects/localhost.cfg-sample +etc/icinga/objects/printer.cfg-sample +etc/icinga/objects/switch.cfg-sample +etc/icinga/objects/templates.cfg-sample +etc/icinga/objects/timeperiods.cfg-sample +etc/icinga/objects/windows.cfg-sample +etc/icinga/resource.cfg-sample +%%ICINGAWWWDIR%%/cgi-bin/avail.cgi +%%ICINGAWWWDIR%%/cgi-bin/cmd.cgi +%%ICINGAWWWDIR%%/cgi-bin/config.cgi +%%ICINGAWWWDIR%%/cgi-bin/extinfo.cgi +%%ICINGAWWWDIR%%/cgi-bin/histogram.cgi +%%ICINGAWWWDIR%%/cgi-bin/history.cgi +%%ICINGAWWWDIR%%/cgi-bin/notifications.cgi +%%ICINGAWWWDIR%%/cgi-bin/outages.cgi +%%ICINGAWWWDIR%%/cgi-bin/showlog.cgi +%%ICINGAWWWDIR%%/cgi-bin/status.cgi +%%ICINGAWWWDIR%%/cgi-bin/statusmap.cgi +%%ICINGAWWWDIR%%/cgi-bin/statuswml.cgi +%%ICINGAWWWDIR%%/cgi-bin/summary.cgi +%%ICINGAWWWDIR%%/cgi-bin/tac.cgi +%%ICINGAWWWDIR%%/cgi-bin/trends.cgi +%%ICINGAWWWDIR%%/stylesheets/interface/common.css +%%ICINGAWWWDIR%%/stylesheets/interface/menu.css +%%ICINGAWWWDIR%%/stylesheets/interface/search.css +%%ICINGAWWWDIR%%/stylesheets/avail.css +%%ICINGAWWWDIR%%/stylesheets/checksanity.css +%%ICINGAWWWDIR%%/stylesheets/cmd.css +%%ICINGAWWWDIR%%/stylesheets/common.css +%%ICINGAWWWDIR%%/stylesheets/config.css +%%ICINGAWWWDIR%%/stylesheets/dd.css +%%ICINGAWWWDIR%%/stylesheets/extinfo.css +%%ICINGAWWWDIR%%/stylesheets/histogram.css +%%ICINGAWWWDIR%%/stylesheets/history.css +%%ICINGAWWWDIR%%/stylesheets/ministatus.css +%%ICINGAWWWDIR%%/stylesheets/notifications.css +%%ICINGAWWWDIR%%/stylesheets/outages.css +%%ICINGAWWWDIR%%/stylesheets/showlog.css +%%ICINGAWWWDIR%%/stylesheets/status.css +%%ICINGAWWWDIR%%/stylesheets/statusmap.css +%%ICINGAWWWDIR%%/stylesheets/summary.css +%%ICINGAWWWDIR%%/stylesheets/tac.css +%%ICINGAWWWDIR%%/stylesheets/trends.css +%%ICINGAWWWDIR%%/contexthelp/A1.html +%%ICINGAWWWDIR%%/contexthelp/A2.html +%%ICINGAWWWDIR%%/contexthelp/A3.html +%%ICINGAWWWDIR%%/contexthelp/A4.html +%%ICINGAWWWDIR%%/contexthelp/A5.html +%%ICINGAWWWDIR%%/contexthelp/A6.html +%%ICINGAWWWDIR%%/contexthelp/A7.html +%%ICINGAWWWDIR%%/contexthelp/B1.html +%%ICINGAWWWDIR%%/contexthelp/C1.html +%%ICINGAWWWDIR%%/contexthelp/D1.html +%%ICINGAWWWDIR%%/contexthelp/E1.html +%%ICINGAWWWDIR%%/contexthelp/F1.html +%%ICINGAWWWDIR%%/contexthelp/G1.html +%%ICINGAWWWDIR%%/contexthelp/G2.html +%%ICINGAWWWDIR%%/contexthelp/G3.html +%%ICINGAWWWDIR%%/contexthelp/G4.html +%%ICINGAWWWDIR%%/contexthelp/G5.html +%%ICINGAWWWDIR%%/contexthelp/G6.html +%%ICINGAWWWDIR%%/contexthelp/H1.html +%%ICINGAWWWDIR%%/contexthelp/H2.html +%%ICINGAWWWDIR%%/contexthelp/H3.html +%%ICINGAWWWDIR%%/contexthelp/H4.html +%%ICINGAWWWDIR%%/contexthelp/H5.html +%%ICINGAWWWDIR%%/contexthelp/H6.html +%%ICINGAWWWDIR%%/contexthelp/H7.html +%%ICINGAWWWDIR%%/contexthelp/H8.html +%%ICINGAWWWDIR%%/contexthelp/I1.html +%%ICINGAWWWDIR%%/contexthelp/I2.html +%%ICINGAWWWDIR%%/contexthelp/I3.html +%%ICINGAWWWDIR%%/contexthelp/I4.html +%%ICINGAWWWDIR%%/contexthelp/I5.html +%%ICINGAWWWDIR%%/contexthelp/I6.html +%%ICINGAWWWDIR%%/contexthelp/I7.html +%%ICINGAWWWDIR%%/contexthelp/I8.html +%%ICINGAWWWDIR%%/contexthelp/I9.html +%%ICINGAWWWDIR%%/contexthelp/J1.html +%%ICINGAWWWDIR%%/contexthelp/K1.html +%%ICINGAWWWDIR%%/contexthelp/L1.html +%%ICINGAWWWDIR%%/contexthelp/L10.html +%%ICINGAWWWDIR%%/contexthelp/L11.html +%%ICINGAWWWDIR%%/contexthelp/L12.html +%%ICINGAWWWDIR%%/contexthelp/L13.html +%%ICINGAWWWDIR%%/contexthelp/L2.html +%%ICINGAWWWDIR%%/contexthelp/L3.html +%%ICINGAWWWDIR%%/contexthelp/L4.html +%%ICINGAWWWDIR%%/contexthelp/L5.html +%%ICINGAWWWDIR%%/contexthelp/L6.html +%%ICINGAWWWDIR%%/contexthelp/L7.html +%%ICINGAWWWDIR%%/contexthelp/L8.html +%%ICINGAWWWDIR%%/contexthelp/L9.html +%%ICINGAWWWDIR%%/contexthelp/M1.html +%%ICINGAWWWDIR%%/contexthelp/M2.html +%%ICINGAWWWDIR%%/contexthelp/M3.html +%%ICINGAWWWDIR%%/contexthelp/M4.html +%%ICINGAWWWDIR%%/contexthelp/M5.html +%%ICINGAWWWDIR%%/contexthelp/M6.html +%%ICINGAWWWDIR%%/contexthelp/N1.html +%%ICINGAWWWDIR%%/contexthelp/N2.html +%%ICINGAWWWDIR%%/contexthelp/N3.html +%%ICINGAWWWDIR%%/contexthelp/N4.html +%%ICINGAWWWDIR%%/contexthelp/N5.html +%%ICINGAWWWDIR%%/contexthelp/N6.html +%%ICINGAWWWDIR%%/contexthelp/N7.html +%%ICINGAWWWDIR%%/docs/en/about.html +%%ICINGAWWWDIR%%/docs/en/activechecks.html +%%ICINGAWWWDIR%%/docs/en/adaptive.html +%%ICINGAWWWDIR%%/docs/en/addons.html +%%ICINGAWWWDIR%%/docs/en/beginners.html +%%ICINGAWWWDIR%%/docs/en/cachedchecks.html +%%ICINGAWWWDIR%%/docs/en/cgiauth.html +%%ICINGAWWWDIR%%/docs/en/cgiincludes.html +%%ICINGAWWWDIR%%/docs/en/cgiparams.html +%%ICINGAWWWDIR%%/docs/en/cgis.html +%%ICINGAWWWDIR%%/docs/en/cgisecurity.html +%%ICINGAWWWDIR%%/docs/en/ch01.html +%%ICINGAWWWDIR%%/docs/en/ch010.html +%%ICINGAWWWDIR%%/docs/en/ch02.html +%%ICINGAWWWDIR%%/docs/en/ch03.html +%%ICINGAWWWDIR%%/docs/en/ch04.html +%%ICINGAWWWDIR%%/docs/en/ch05.html +%%ICINGAWWWDIR%%/docs/en/ch06.html +%%ICINGAWWWDIR%%/docs/en/ch07.html +%%ICINGAWWWDIR%%/docs/en/ch08.html +%%ICINGAWWWDIR%%/docs/en/ch09.html +%%ICINGAWWWDIR%%/docs/en/ch10.html +%%ICINGAWWWDIR%%/docs/en/ch11.html +%%ICINGAWWWDIR%%/docs/en/ch12.html +%%ICINGAWWWDIR%%/docs/en/checkscheduling.html +%%ICINGAWWWDIR%%/docs/en/clusters.html +%%ICINGAWWWDIR%%/docs/en/config.html +%%ICINGAWWWDIR%%/docs/en/configcgi.html +%%ICINGAWWWDIR%%/docs/en/configmain.html +%%ICINGAWWWDIR%%/docs/en/configobject.html +%%ICINGAWWWDIR%%/docs/en/customobjectvars.html +%%ICINGAWWWDIR%%/docs/en/db_components.html +%%ICINGAWWWDIR%%/docs/en/db_example-configs.html +%%ICINGAWWWDIR%%/docs/en/db_intro.html +%%ICINGAWWWDIR%%/docs/en/db_model.html +%%ICINGAWWWDIR%%/docs/en/dependencies.html +%%ICINGAWWWDIR%%/docs/en/dependencychecks.html +%%ICINGAWWWDIR%%/docs/en/distributed.html +%%ICINGAWWWDIR%%/docs/en/downtime.html +%%ICINGAWWWDIR%%/docs/en/embeddedperl.html +%%ICINGAWWWDIR%%/docs/en/epnplugins.html +%%ICINGAWWWDIR%%/docs/en/escalation_condition.html +%%ICINGAWWWDIR%%/docs/en/escalations.html +%%ICINGAWWWDIR%%/docs/en/eventhandlers.html +%%ICINGAWWWDIR%%/docs/en/extcommands.html +%%ICINGAWWWDIR%%/docs/en/extcommands2.html +%%ICINGAWWWDIR%%/docs/en/faststartup.html +%%ICINGAWWWDIR%%/docs/en/flapping.html +%%ICINGAWWWDIR%%/docs/en/freshness.html +%%ICINGAWWWDIR%%/docs/en/hostchecks.html +%%ICINGAWWWDIR%%/docs/en/howtos.html +%%ICINGAWWWDIR%%/docs/en/icinga-api.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-api.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-config.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-intro.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-introduction.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-pnp.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-scratch.html +%%ICINGAWWWDIR%%/docs/en/icinga-web.html +%%ICINGAWWWDIR%%/docs/en/icingastats.html +%%ICINGAWWWDIR%%/docs/en/index.html +%%ICINGAWWWDIR%%/docs/en/int-mklivestatus.html +%%ICINGAWWWDIR%%/docs/en/int-snmptrap.html +%%ICINGAWWWDIR%%/docs/en/int-tcpwrappers.html +%%ICINGAWWWDIR%%/docs/en/integration.html +%%ICINGAWWWDIR%%/docs/en/ix01.html +%%ICINGAWWWDIR%%/docs/en/largeinstalltweaks.html +%%ICINGAWWWDIR%%/docs/en/macrolist.html +%%ICINGAWWWDIR%%/docs/en/macros.html +%%ICINGAWWWDIR%%/docs/en/monitoring-linux.html +%%ICINGAWWWDIR%%/docs/en/monitoring-netware.html +%%ICINGAWWWDIR%%/docs/en/monitoring-printers.html +%%ICINGAWWWDIR%%/docs/en/monitoring-publicservices.html +%%ICINGAWWWDIR%%/docs/en/monitoring-routers.html +%%ICINGAWWWDIR%%/docs/en/monitoring-windows.html +%%ICINGAWWWDIR%%/docs/en/mrtggraphs.html +%%ICINGAWWWDIR%%/docs/en/networkreachability.html +%%ICINGAWWWDIR%%/docs/en/nsca.html +%%ICINGAWWWDIR%%/docs/en/notifications.html +%%ICINGAWWWDIR%%/docs/en/objectdefinitions.html +%%ICINGAWWWDIR%%/docs/en/objectinheritance.html +%%ICINGAWWWDIR%%/docs/en/objecttricks.html +%%ICINGAWWWDIR%%/docs/en/oncallrotation.html +%%ICINGAWWWDIR%%/docs/en/passivechecks.html +%%ICINGAWWWDIR%%/docs/en/passivestatetranslation.html +%%ICINGAWWWDIR%%/docs/en/perfdata.html +%%ICINGAWWWDIR%%/docs/en/pluginapi.html +%%ICINGAWWWDIR%%/docs/en/plugins.html +%%ICINGAWWWDIR%%/docs/en/quickstart-icinga-freebsd.html +%%ICINGAWWWDIR%%/docs/en/quickstart-icinga.html +%%ICINGAWWWDIR%%/docs/en/quickstart-idoutils.html +%%ICINGAWWWDIR%%/docs/en/quickstart-idoutils-freebsd.html +%%ICINGAWWWDIR%%/docs/en/quickstart.html +%%ICINGAWWWDIR%%/docs/en/redundancy.html +%%ICINGAWWWDIR%%/docs/en/reporting.html +%%ICINGAWWWDIR%%/docs/en/security.html +%%ICINGAWWWDIR%%/docs/en/servicechecks.html +%%ICINGAWWWDIR%%/docs/en/stalking.html +%%ICINGAWWWDIR%%/docs/en/startstop.html +%%ICINGAWWWDIR%%/docs/en/statetypes.html +%%ICINGAWWWDIR%%/docs/en/timeperiods.html +%%ICINGAWWWDIR%%/docs/en/tuning.html +%%ICINGAWWWDIR%%/docs/en/upgrading.html +%%ICINGAWWWDIR%%/docs/en/upgrading_icingaweb.html +%%ICINGAWWWDIR%%/docs/en/upgrading_idoutils.html +%%ICINGAWWWDIR%%/docs/en/verifyconfig.html +%%ICINGAWWWDIR%%/docs/en/volatileservices.html +%%ICINGAWWWDIR%%/docs/en/whatsnew.html +%%ICINGAWWWDIR%%/docs/de/about.html +%%ICINGAWWWDIR%%/docs/de/activechecks.html +%%ICINGAWWWDIR%%/docs/de/adaptive.html +%%ICINGAWWWDIR%%/docs/de/addons.html +%%ICINGAWWWDIR%%/docs/de/beginners.html +%%ICINGAWWWDIR%%/docs/de/cachedchecks.html +%%ICINGAWWWDIR%%/docs/de/cgiauth.html +%%ICINGAWWWDIR%%/docs/de/cgiincludes.html +%%ICINGAWWWDIR%%/docs/de/cgiparams.html +%%ICINGAWWWDIR%%/docs/de/cgis.html +%%ICINGAWWWDIR%%/docs/de/cgisecurity.html +%%ICINGAWWWDIR%%/docs/de/ch01.html +%%ICINGAWWWDIR%%/docs/de/ch02.html +%%ICINGAWWWDIR%%/docs/de/ch03.html +%%ICINGAWWWDIR%%/docs/de/ch04.html +%%ICINGAWWWDIR%%/docs/de/ch05.html +%%ICINGAWWWDIR%%/docs/de/ch06.html +%%ICINGAWWWDIR%%/docs/de/ch07.html +%%ICINGAWWWDIR%%/docs/de/ch08.html +%%ICINGAWWWDIR%%/docs/de/ch09.html +%%ICINGAWWWDIR%%/docs/de/ch10.html +%%ICINGAWWWDIR%%/docs/de/ch11.html +%%ICINGAWWWDIR%%/docs/de/ch12.html +%%ICINGAWWWDIR%%/docs/de/checkscheduling.html +%%ICINGAWWWDIR%%/docs/de/clusters.html +%%ICINGAWWWDIR%%/docs/de/components.html +%%ICINGAWWWDIR%%/docs/de/config.html +%%ICINGAWWWDIR%%/docs/de/configcgi.html +%%ICINGAWWWDIR%%/docs/de/configmain.html +%%ICINGAWWWDIR%%/docs/de/configobject.html +%%ICINGAWWWDIR%%/docs/de/customobjectvars.html +%%ICINGAWWWDIR%%/docs/de/db_intro.html +%%ICINGAWWWDIR%%/docs/de/db_model.html +%%ICINGAWWWDIR%%/docs/de/dependencies.html +%%ICINGAWWWDIR%%/docs/de/dependencychecks.html +%%ICINGAWWWDIR%%/docs/de/distributed.html +%%ICINGAWWWDIR%%/docs/de/downtime.html +%%ICINGAWWWDIR%%/docs/de/embeddedperl.html +%%ICINGAWWWDIR%%/docs/de/epnplugins.html +%%ICINGAWWWDIR%%/docs/de/escalation_condition.html +%%ICINGAWWWDIR%%/docs/de/escalations.html +%%ICINGAWWWDIR%%/docs/de/eventhandlers.html +%%ICINGAWWWDIR%%/docs/de/example-configs.html +%%ICINGAWWWDIR%%/docs/de/extcommands.html +%%ICINGAWWWDIR%%/docs/de/extcommands2.html +%%ICINGAWWWDIR%%/docs/de/faststartup.html +%%ICINGAWWWDIR%%/docs/de/flapping.html +%%ICINGAWWWDIR%%/docs/de/freshness.html +%%ICINGAWWWDIR%%/docs/de/hostchecks.html +%%ICINGAWWWDIR%%/docs/de/howtos.html +%%ICINGAWWWDIR%%/docs/de/icinga-api.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-api.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-config.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-intro.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-introduction.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-pnp.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-scratch.html +%%ICINGAWWWDIR%%/docs/de/icinga-web.html +%%ICINGAWWWDIR%%/docs/de/icingastats.html +%%ICINGAWWWDIR%%/docs/de/index.html +%%ICINGAWWWDIR%%/docs/de/int-mklivestatus.html +%%ICINGAWWWDIR%%/docs/de/int-snmptrap.html +%%ICINGAWWWDIR%%/docs/de/integration.html +%%ICINGAWWWDIR%%/docs/de/int-tcpwrappers.html +%%ICINGAWWWDIR%%/docs/de/ix01.html +%%ICINGAWWWDIR%%/docs/de/largeinstalltweaks.html +%%ICINGAWWWDIR%%/docs/de/macrolist.html +%%ICINGAWWWDIR%%/docs/de/macros.html +%%ICINGAWWWDIR%%/docs/de/monitoring-linux.html +%%ICINGAWWWDIR%%/docs/de/monitoring-netware.html +%%ICINGAWWWDIR%%/docs/de/monitoring-printers.html +%%ICINGAWWWDIR%%/docs/de/monitoring-publicservices.html +%%ICINGAWWWDIR%%/docs/de/monitoring-routers.html +%%ICINGAWWWDIR%%/docs/de/monitoring-windows.html +%%ICINGAWWWDIR%%/docs/de/mrtggraphs.html +%%ICINGAWWWDIR%%/docs/de/networkreachability.html +%%ICINGAWWWDIR%%/docs/de/notifications.html +%%ICINGAWWWDIR%%/docs/de/nsca.html +%%ICINGAWWWDIR%%/docs/de/objectdefinitions.html +%%ICINGAWWWDIR%%/docs/de/objectinheritance.html +%%ICINGAWWWDIR%%/docs/de/objecttricks.html +%%ICINGAWWWDIR%%/docs/de/oncallrotation.html +%%ICINGAWWWDIR%%/docs/de/passivechecks.html +%%ICINGAWWWDIR%%/docs/de/passivestatetranslation.html +%%ICINGAWWWDIR%%/docs/de/perfdata.html +%%ICINGAWWWDIR%%/docs/de/pluginapi.html +%%ICINGAWWWDIR%%/docs/de/plugins.html +%%ICINGAWWWDIR%%/docs/de/quickstart-icinga-freebsd.html +%%ICINGAWWWDIR%%/docs/de/quickstart-icinga.html +%%ICINGAWWWDIR%%/docs/de/quickstart-idoutils-freebsd.html +%%ICINGAWWWDIR%%/docs/de/quickstart-idoutils.html +%%ICINGAWWWDIR%%/docs/de/quickstart.html +%%ICINGAWWWDIR%%/docs/de/redundancy.html +%%ICINGAWWWDIR%%/docs/de/reporting.html +%%ICINGAWWWDIR%%/docs/de/security.html +%%ICINGAWWWDIR%%/docs/de/servicechecks.html +%%ICINGAWWWDIR%%/docs/de/stalking.html +%%ICINGAWWWDIR%%/docs/de/startstop.html +%%ICINGAWWWDIR%%/docs/de/statetypes.html +%%ICINGAWWWDIR%%/docs/de/timeperiods.html +%%ICINGAWWWDIR%%/docs/de/tuning.html +%%ICINGAWWWDIR%%/docs/de/upgrading.html +%%ICINGAWWWDIR%%/docs/de/upgrading_icingaweb.html +%%ICINGAWWWDIR%%/docs/de/upgrading_idoutils.html +%%ICINGAWWWDIR%%/docs/de/verifyconfig.html +%%ICINGAWWWDIR%%/docs/de/volatileservices.html +%%ICINGAWWWDIR%%/docs/de/whatsnew.html +%%ICINGAWWWDIR%%/doxygen/html/annotated.html +%%ICINGAWWWDIR%%/doxygen/html/avail_8c.html +%%ICINGAWWWDIR%%/doxygen/html/base_2config_8c.html +%%ICINGAWWWDIR%%/doxygen/html/base_2notifications_8c.html +%%ICINGAWWWDIR%%/doxygen/html/base_2perlxsi_8c.html +%%ICINGAWWWDIR%%/doxygen/html/base_2utils_8c.html +%%ICINGAWWWDIR%%/doxygen/html/broker_8c.html +%%ICINGAWWWDIR%%/doxygen/html/broker_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/broker_8h.html +%%ICINGAWWWDIR%%/doxygen/html/cgi_2config_8c.html +%%ICINGAWWWDIR%%/doxygen/html/cgi_2notifications_8c.html +%%ICINGAWWWDIR%%/doxygen/html/cgiauth_8c.html +%%ICINGAWWWDIR%%/doxygen/html/cgiauth_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/cgiauth_8h.html +%%ICINGAWWWDIR%%/doxygen/html/cgiutils_8c.html +%%ICINGAWWWDIR%%/doxygen/html/cgiutils_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/cgiutils_8h.html +%%ICINGAWWWDIR%%/doxygen/html/checks_8c.html +%%ICINGAWWWDIR%%/doxygen/html/classes.html +%%ICINGAWWWDIR%%/doxygen/html/cmd_8c.html +%%ICINGAWWWDIR%%/doxygen/html/commands_8c.html +%%ICINGAWWWDIR%%/doxygen/html/comments_8c.html +%%ICINGAWWWDIR%%/doxygen/html/comments_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/comments_8h.html +%%ICINGAWWWDIR%%/doxygen/html/config_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/config_8h.html +%%ICINGAWWWDIR%%/doxygen/html/contrib_2epn__icinga_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/contrib_2epn__icinga_8h.html +%%ICINGAWWWDIR%%/doxygen/html/contrib_2perlxsi_8c.html +%%ICINGAWWWDIR%%/doxygen/html/convertcfg_8c.html +%%ICINGAWWWDIR%%/doxygen/html/daemonchk_8c.html +%%ICINGAWWWDIR%%/doxygen/html/db_8c.html +%%ICINGAWWWDIR%%/doxygen/html/db_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/db_8h.html +%%ICINGAWWWDIR%%/doxygen/html/dbhandlers_8c.html +%%ICINGAWWWDIR%%/doxygen/html/dbhandlers_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/dbhandlers_8h.html +%%ICINGAWWWDIR%%/doxygen/html/dbqueries_8c.html +%%ICINGAWWWDIR%%/doxygen/html/dbqueries_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/dbqueries_8h.html +%%ICINGAWWWDIR%%/doxygen/html/diag_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/downtime_8c.html +%%ICINGAWWWDIR%%/doxygen/html/downtime_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/downtime_8h.html +%%ICINGAWWWDIR%%/doxygen/html/doxygen.css +%%ICINGAWWWDIR%%/doxygen/html/doxygen.png +%%ICINGAWWWDIR%%/doxygen/html/events_8c.html +%%ICINGAWWWDIR%%/doxygen/html/extcmd__list_8c.html +%%ICINGAWWWDIR%%/doxygen/html/extinfo_8c.html +%%ICINGAWWWDIR%%/doxygen/html/fail_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/file2sock_8c.html +%%ICINGAWWWDIR%%/doxygen/html/files.html +%%ICINGAWWWDIR%%/doxygen/html/flapping_8c.html +%%ICINGAWWWDIR%%/doxygen/html/functions.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x61.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x62.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x63.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x64.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x65.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x66.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x67.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x68.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x69.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x6c.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x6d.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x6e.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x6f.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x70.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x72.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x73.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x74.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x75.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x76.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x78.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x79.html +%%ICINGAWWWDIR%%/doxygen/html/functions_0x7a.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x61.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x62.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x63.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x64.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x65.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x66.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x67.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x68.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x69.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x6c.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x6d.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x6e.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x6f.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x70.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x72.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x73.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x74.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x75.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x76.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x78.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x79.html +%%ICINGAWWWDIR%%/doxygen/html/functions_vars_0x7a.html +%%ICINGAWWWDIR%%/doxygen/html/getcgi_8c.html +%%ICINGAWWWDIR%%/doxygen/html/getcgi_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/getcgi_8h.html +%%ICINGAWWWDIR%%/doxygen/html/globals.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x61.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x62.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x63.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x64.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x65.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x66.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x67.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x68.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x69.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x6a.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x6c.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x6d.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x6e.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x6f.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x70.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x71.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x72.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x73.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x74.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x75.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x76.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x77.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x78.html +%%ICINGAWWWDIR%%/doxygen/html/globals_0x7a.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x61.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x62.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x63.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x64.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x65.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x66.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x67.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x68.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x69.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x6a.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x6c.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x6d.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x6e.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x6f.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x70.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x72.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x73.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x74.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x75.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x76.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x77.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x78.html +%%ICINGAWWWDIR%%/doxygen/html/globals_defs_0x7a.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x61.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x62.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x63.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x64.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x65.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x66.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x67.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x68.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x69.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x6c.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x6d.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x6e.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x6f.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x70.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x72.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x73.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x74.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x75.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x76.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x77.html +%%ICINGAWWWDIR%%/doxygen/html/globals_func_0x78.html +%%ICINGAWWWDIR%%/doxygen/html/globals_type.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x61.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x62.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x63.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x64.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x65.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x66.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x67.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x68.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x69.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x6c.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x6d.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x6e.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x6f.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x70.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x71.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x72.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x73.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x74.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x75.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x76.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x77.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x78.html +%%ICINGAWWWDIR%%/doxygen/html/globals_vars_0x7a.html +%%ICINGAWWWDIR%%/doxygen/html/helloworld_8c.html +%%ICINGAWWWDIR%%/doxygen/html/histogram_8c.html +%%ICINGAWWWDIR%%/doxygen/html/history_8c.html +%%ICINGAWWWDIR%%/doxygen/html/icinga_8c.html +%%ICINGAWWWDIR%%/doxygen/html/icinga_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/icinga_8h.html +%%ICINGAWWWDIR%%/doxygen/html/icingastats_8c.html +%%ICINGAWWWDIR%%/doxygen/html/ido2db_8c.html +%%ICINGAWWWDIR%%/doxygen/html/ido2db_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/ido2db_8h.html +%%ICINGAWWWDIR%%/doxygen/html/idomod_8c.html +%%ICINGAWWWDIR%%/doxygen/html/idomod_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/idomod_8h.html +%%ICINGAWWWDIR%%/doxygen/html/include_2common_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/include_2common_8h.html +%%ICINGAWWWDIR%%/doxygen/html/include_2epn__icinga_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/include_2epn__icinga_8h.html +%%ICINGAWWWDIR%%/doxygen/html/io_8c.html +%%ICINGAWWWDIR%%/doxygen/html/io_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/io_8h.html +%%ICINGAWWWDIR%%/doxygen/html/locations_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/locations_8h.html +%%ICINGAWWWDIR%%/doxygen/html/log2ido_8c.html +%%ICINGAWWWDIR%%/doxygen/html/logging_8c.html +%%ICINGAWWWDIR%%/doxygen/html/logging_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/logging_8h.html +%%ICINGAWWWDIR%%/doxygen/html/macros_8c.html +%%ICINGAWWWDIR%%/doxygen/html/macros_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/macros_8h.html +%%ICINGAWWWDIR%%/doxygen/html/mini__epn_8c.html +%%ICINGAWWWDIR%%/doxygen/html/module_2idoutils_2include_2common_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/module_2idoutils_2include_2common_8h.html +%%ICINGAWWWDIR%%/doxygen/html/module_2idoutils_2src_2utils_8c.html +%%ICINGAWWWDIR%%/doxygen/html/nebcallbacks_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/nebcallbacks_8h.html +%%ICINGAWWWDIR%%/doxygen/html/neberrors_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/neberrors_8h.html +%%ICINGAWWWDIR%%/doxygen/html/nebmods_8c.html +%%ICINGAWWWDIR%%/doxygen/html/nebmods_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/nebmods_8h.html +%%ICINGAWWWDIR%%/doxygen/html/nebmodules_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/nebmodules_8h.html +%%ICINGAWWWDIR%%/doxygen/html/nebstructs_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/nebstructs_8h.html +%%ICINGAWWWDIR%%/doxygen/html/netutils_8c.html +%%ICINGAWWWDIR%%/doxygen/html/netutils_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/netutils_8h.html +%%ICINGAWWWDIR%%/doxygen/html/new__mini__epn_8c.html +%%ICINGAWWWDIR%%/doxygen/html/objects_8c.html +%%ICINGAWWWDIR%%/doxygen/html/objects_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/objects_8h.html +%%ICINGAWWWDIR%%/doxygen/html/ok_2ok-hash_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/ok_2ok-numeric_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/ok_2ok_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/outages_8c.html +%%ICINGAWWWDIR%%/doxygen/html/pass_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/perfdata_8c.html +%%ICINGAWWWDIR%%/doxygen/html/perfdata_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/perfdata_8h.html +%%ICINGAWWWDIR%%/doxygen/html/plan_2no-tests_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/plan_2no__plan_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/plan_2not-enough-tests_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/plan_2sane_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/plan_2skip__all_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/plan_2too-many-plans_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/plan_2too-many-tests_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/profiler_8c.html +%%ICINGAWWWDIR%%/doxygen/html/profiler_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/profiler_8h.html +%%ICINGAWWWDIR%%/doxygen/html/protoapi_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/protoapi_8h.html +%%ICINGAWWWDIR%%/doxygen/html/protonum_8c.html +%%ICINGAWWWDIR%%/doxygen/html/search.idx +%%ICINGAWWWDIR%%/doxygen/html/search.php +%%ICINGAWWWDIR%%/doxygen/html/sehandlers_8c.html +%%ICINGAWWWDIR%%/doxygen/html/shared_8c.html +%%ICINGAWWWDIR%%/doxygen/html/shared_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/shared_8h.html +%%ICINGAWWWDIR%%/doxygen/html/showlog_8c.html +%%ICINGAWWWDIR%%/doxygen/html/skip_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/skiplist_8c.html +%%ICINGAWWWDIR%%/doxygen/html/skiplist_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/skiplist_8h.html +%%ICINGAWWWDIR%%/doxygen/html/snprintf_8c.html +%%ICINGAWWWDIR%%/doxygen/html/snprintf_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/snprintf_8h.html +%%ICINGAWWWDIR%%/doxygen/html/sockdebug_8c.html +%%ICINGAWWWDIR%%/doxygen/html/sretention_8c.html +%%ICINGAWWWDIR%%/doxygen/html/sretention_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/sretention_8h.html +%%ICINGAWWWDIR%%/doxygen/html/statsprofiler_8c.html +%%ICINGAWWWDIR%%/doxygen/html/statsprofiler_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/statsprofiler_8h.html +%%ICINGAWWWDIR%%/doxygen/html/status_8c.html +%%ICINGAWWWDIR%%/doxygen/html/statusdata_8c.html +%%ICINGAWWWDIR%%/doxygen/html/statusdata_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/statusdata_8h.html +%%ICINGAWWWDIR%%/doxygen/html/statusmap_8c.html +%%ICINGAWWWDIR%%/doxygen/html/statuswml_8c.html +%%ICINGAWWWDIR%%/doxygen/html/statuswrl_8c.html +%%ICINGAWWWDIR%%/doxygen/html/structalert__producer__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structarchived__event__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structarchived__state__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structauthdata__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structavail__subject__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcheck__result__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcheck__stats__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcircular__buffer__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcommand__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcommandsmember__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcomment__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcontact__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcontactgroup__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcontactgroupsmember__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcontactsmember__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structcustomvariablesmember__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structdaterange__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structdbuf__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structerrorlist.html +%%ICINGAWWWDIR%%/doxygen/html/structescalation__condition__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhost__cursor__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhost__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhostdependency__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhostescalation__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhostgroup__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhostlist.html +%%ICINGAWWWDIR%%/doxygen/html/structhostoutage__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhostoutagesort__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhostsmember__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structhostsort__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structicinga__macros.html +%%ICINGAWWWDIR%%/doxygen/html/structido2db__dbconfig__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structido2db__dbconninfo__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structido2db__dbobject__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structido2db__input__data__info__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structido2db__mbuf__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structido__dbuf__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structido__mmapfile__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structidomod__sink__buffer__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structlayer__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structlifo__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structmmapfile__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnagios__extcmd.html +%%ICINGAWWWDIR%%/doxygen/html/structnagios__macros.html +%%ICINGAWWWDIR%%/doxygen/html/structnebcallback__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebmodule__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__acknowledgement__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__adaptive__contact__data__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__adaptive__host__data__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__adaptive__program__data__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__adaptive__service__data__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__aggregated__status__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__comment__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__contact__notification__method__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__contact__notification__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__contact__status__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__downtime__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__event__handler__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__external__command__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__flapping__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__host__check__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__host__status__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__log__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__notification__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__process__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__program__status__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__retention__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__service__check__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__service__status__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__statechange__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__system__command__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnebstruct__timed__event__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structnotify__list__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structobjectlist__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structpassive__check__result__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structpr__chunk.html +%%ICINGAWWWDIR%%/doxygen/html/structpr__chunk__x.html +%%ICINGAWWWDIR%%/doxygen/html/structprofile__object.html +%%ICINGAWWWDIR%%/doxygen/html/structprofiler__item.html +%%ICINGAWWWDIR%%/doxygen/html/structsched__info__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structscheduled__downtime__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structservice__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structservicedependency__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structserviceescalation__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structservicegroup__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structservicesmember__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structservicesort__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structskiplist__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structskiplistnode__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structsortdata__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structtimed__event__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structtimeperiod__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structtimeperiodexclusion__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structtimerange__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structtimeslice__data__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__command__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__contact__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__contactgroup__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__contactlist__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__customvariablesmember__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__daterange__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__escalation__condition__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__host__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__hostdependency__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__hostescalation__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__hostextinfo__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__hostgroup__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__hostlist__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__memberlist__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__service__cursor__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__service__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__servicedependency__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__serviceescalation__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__serviceextinfo__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__servicegroup__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__servicelist__struct.html +%%ICINGAWWWDIR%%/doxygen/html/structxodtemplate__timeperiod__struct.html +%%ICINGAWWWDIR%%/doxygen/html/summary_8c.html +%%ICINGAWWWDIR%%/doxygen/html/tab_b.gif +%%ICINGAWWWDIR%%/doxygen/html/tab_l.gif +%%ICINGAWWWDIR%%/doxygen/html/tab_r.gif +%%ICINGAWWWDIR%%/doxygen/html/tabs.css +%%ICINGAWWWDIR%%/doxygen/html/tac_8c.html +%%ICINGAWWWDIR%%/doxygen/html/tap_8c.html +%%ICINGAWWWDIR%%/doxygen/html/tap_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/tap_8h.html +%%ICINGAWWWDIR%%/doxygen/html/test-stubs_8c.html +%%ICINGAWWWDIR%%/doxygen/html/test__checks_8c.html +%%ICINGAWWWDIR%%/doxygen/html/test__events_8c.html +%%ICINGAWWWDIR%%/doxygen/html/test__icinga__config_8c.html +%%ICINGAWWWDIR%%/doxygen/html/test__logging_8c.html +%%ICINGAWWWDIR%%/doxygen/html/test__timeperiods_8c.html +%%ICINGAWWWDIR%%/doxygen/html/test__xsddefault_8c.html +%%ICINGAWWWDIR%%/doxygen/html/todo_2test_8c.html +%%ICINGAWWWDIR%%/doxygen/html/trends_8c.html +%%ICINGAWWWDIR%%/doxygen/html/utils_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/utils_8h.html +%%ICINGAWWWDIR%%/doxygen/html/xcddefault_8c.html +%%ICINGAWWWDIR%%/doxygen/html/xcddefault_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/xcddefault_8h.html +%%ICINGAWWWDIR%%/doxygen/html/xdddefault_8c.html +%%ICINGAWWWDIR%%/doxygen/html/xdddefault_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/xdddefault_8h.html +%%ICINGAWWWDIR%%/doxygen/html/xodtemplate_8c.html +%%ICINGAWWWDIR%%/doxygen/html/xodtemplate_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/xodtemplate_8h.html +%%ICINGAWWWDIR%%/doxygen/html/xpddefault_8c.html +%%ICINGAWWWDIR%%/doxygen/html/xpddefault_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/xpddefault_8h.html +%%ICINGAWWWDIR%%/doxygen/html/xrddefault_8c.html +%%ICINGAWWWDIR%%/doxygen/html/xrddefault_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/xrddefault_8h.html +%%ICINGAWWWDIR%%/doxygen/html/xsddefault_8c.html +%%ICINGAWWWDIR%%/doxygen/html/xsddefault_8h-source.html +%%ICINGAWWWDIR%%/doxygen/html/xsddefault_8h.html +%%ICINGAWWWDIR%%/docs/images/flags/de.png +%%ICINGAWWWDIR%%/docs/images/flags/um_gb.png +%%ICINGAWWWDIR%%/docs/images/MyServiceStatus.png +%%ICINGAWWWDIR%%/docs/images/activechecks.png +%%ICINGAWWWDIR%%/docs/images/cachedcheckgraphs.png +%%ICINGAWWWDIR%%/docs/images/cachedchecks.png +%%ICINGAWWWDIR%%/docs/images/cachedchecks1.png +%%ICINGAWWWDIR%%/docs/images/caution.gif +%%ICINGAWWWDIR%%/docs/images/caution.png +%%ICINGAWWWDIR%%/docs/images/cgi-avail-a.png +%%ICINGAWWWDIR%%/docs/images/cgi-avail-b.png +%%ICINGAWWWDIR%%/docs/images/cgi-cmd.png +%%ICINGAWWWDIR%%/docs/images/cgi-commands.png +%%ICINGAWWWDIR%%/docs/images/cgi-config.png +%%ICINGAWWWDIR%%/docs/images/cgi-continue.png +%%ICINGAWWWDIR%%/docs/images/cgi-extinfo-a.png +%%ICINGAWWWDIR%%/docs/images/cgi-extinfo-b.png +%%ICINGAWWWDIR%%/docs/images/cgi-extinfo-c.png +%%ICINGAWWWDIR%%/docs/images/cgi-extinfo-d.png +%%ICINGAWWWDIR%%/docs/images/cgi-general.png +%%ICINGAWWWDIR%%/docs/images/cgi-histogram.png +%%ICINGAWWWDIR%%/docs/images/cgi-history.png +%%ICINGAWWWDIR%%/docs/images/cgi-notifications.png +%%ICINGAWWWDIR%%/docs/images/cgi-outages.png +%%ICINGAWWWDIR%%/docs/images/cgi-pause.png +%%ICINGAWWWDIR%%/docs/images/cgi-showlog.png +%%ICINGAWWWDIR%%/docs/images/cgi-status-a.png +%%ICINGAWWWDIR%%/docs/images/cgi-status-b.png +%%ICINGAWWWDIR%%/docs/images/cgi-status-c.png +%%ICINGAWWWDIR%%/docs/images/cgi-status-d.png +%%ICINGAWWWDIR%%/docs/images/cgi-statusinfo.png +%%ICINGAWWWDIR%%/docs/images/cgi-statusmap.png +%%ICINGAWWWDIR%%/docs/images/cgi-statuswml.png +%%ICINGAWWWDIR%%/docs/images/cgi-statuswrl.png +%%ICINGAWWWDIR%%/docs/images/cgi-summary.png +%%ICINGAWWWDIR%%/docs/images/cgi-tac.png +%%ICINGAWWWDIR%%/docs/images/cgi-trends.png +%%ICINGAWWWDIR%%/docs/images/checkmark.png +%%ICINGAWWWDIR%%/docs/images/checktiming.png +%%ICINGAWWWDIR%%/docs/images/epn.png +%%ICINGAWWWDIR%%/docs/images/configoverview.png +%%ICINGAWWWDIR%%/docs/images/db_model_cf.png +%%ICINGAWWWDIR%%/docs/images/db_model_ct.png +%%ICINGAWWWDIR%%/docs/images/db_model_cu.png +%%ICINGAWWWDIR%%/docs/images/db_model_dt.png +%%ICINGAWWWDIR%%/docs/images/db_model_ht.png +%%ICINGAWWWDIR%%/docs/images/distributed.png +%%ICINGAWWWDIR%%/docs/images/downtime.png +%%ICINGAWWWDIR%%/docs/images/eventhandlers.png +%%ICINGAWWWDIR%%/docs/images/externalcommands.png +%%ICINGAWWWDIR%%/docs/images/fast-startup.png +%%ICINGAWWWDIR%%/docs/images/fast-startup1.png +%%ICINGAWWWDIR%%/docs/images/fast-startup2.png +%%ICINGAWWWDIR%%/docs/images/fig1.png +%%ICINGAWWWDIR%%/docs/images/fig10.png +%%ICINGAWWWDIR%%/docs/images/fig11.png +%%ICINGAWWWDIR%%/docs/images/fig12.png +%%ICINGAWWWDIR%%/docs/images/fig13.png +%%ICINGAWWWDIR%%/docs/images/fig2.png +%%ICINGAWWWDIR%%/docs/images/fig3.png +%%ICINGAWWWDIR%%/docs/images/fig4.png +%%ICINGAWWWDIR%%/docs/images/fig5.png +%%ICINGAWWWDIR%%/docs/images/fig6.png +%%ICINGAWWWDIR%%/docs/images/fig7.png +%%ICINGAWWWDIR%%/docs/images/fig8.png +%%ICINGAWWWDIR%%/docs/images/fig9.png +%%ICINGAWWWDIR%%/docs/images/freshness.png +%%ICINGAWWWDIR%%/docs/images/host-dependencies.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_groups1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_groups2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_logs1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_principals.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_users1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_users2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-commands_hst.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-commands_svc.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks1.png +%%ICINGAWWWDIR%%/docs/images/idoutils.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks3.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter3.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-log.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-login.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-main_bar.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-mainscreen1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-open_problems.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-overview.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-search1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-settings.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-statuscronk.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-topmenu1.png +%%ICINGAWWWDIR%%/docs/images/nagios.jpg +%%ICINGAWWWDIR%%/docs/images/icinga-web-topmenu2.png +%%ICINGAWWWDIR%%/docs/images/important.gif +%%ICINGAWWWDIR%%/docs/images/important.png +%%ICINGAWWWDIR%%/docs/images/integrationoverview.png +%%ICINGAWWWDIR%%/docs/images/interleaved1.png +%%ICINGAWWWDIR%%/docs/images/interleaved2.png +%%ICINGAWWWDIR%%/docs/images/interleaved3.png +%%ICINGAWWWDIR%%/docs/images/logofullsize.png +%%ICINGAWWWDIR%%/docs/images/monitoring-printers.png +%%ICINGAWWWDIR%%/docs/images/monitoring-routers.png +%%ICINGAWWWDIR%%/docs/images/monitoring-windows.png +%%ICINGAWWWDIR%%/docs/images/mrtg-activehostchecks.png +%%ICINGAWWWDIR%%/docs/images/mrtg-activelychecked.png +%%ICINGAWWWDIR%%/docs/images/mrtg-activeservicechecks.png +%%ICINGAWWWDIR%%/docs/images/mrtg-cachedchecks.png +%%ICINGAWWWDIR%%/docs/images/mrtg-commandbuffers.png +%%ICINGAWWWDIR%%/docs/images/tip.gif +%%ICINGAWWWDIR%%/docs/images/mrtg-externalcommands.png +%%ICINGAWWWDIR%%/docs/images/mrtg-hostperfstats.png +%%ICINGAWWWDIR%%/docs/images/mrtg-hoststatechange.png +%%ICINGAWWWDIR%%/docs/images/mrtg-passivechecks.png +%%ICINGAWWWDIR%%/docs/images/mrtg-passivelychecked.png +%%ICINGAWWWDIR%%/docs/images/mrtg-serviceperfstats.png +%%ICINGAWWWDIR%%/docs/images/mrtg-servicestatechange.png +%%ICINGAWWWDIR%%/docs/images/multiple-templates1.png +%%ICINGAWWWDIR%%/docs/images/multiple-templates2.png +%%ICINGAWWWDIR%%/docs/images/ndoutils.png +%%ICINGAWWWDIR%%/docs/images/network-outage1.png +%%ICINGAWWWDIR%%/docs/images/network-outage2.png +%%ICINGAWWWDIR%%/docs/images/noninterleaved1.png +%%ICINGAWWWDIR%%/docs/images/noninterleaved2.png +%%ICINGAWWWDIR%%/docs/images/note.gif +%%ICINGAWWWDIR%%/docs/images/note.png +%%ICINGAWWWDIR%%/docs/images/nrpe.png +%%ICINGAWWWDIR%%/docs/images/nsca.png +%%ICINGAWWWDIR%%/docs/images/nscpp.png +%%ICINGAWWWDIR%%/docs/images/objects-commands.png +%%ICINGAWWWDIR%%/docs/images/objects-contacts.png +%%ICINGAWWWDIR%%/docs/images/objects-hosts.png +%%ICINGAWWWDIR%%/docs/images/objects-services.png +%%ICINGAWWWDIR%%/docs/images/objects-timeperiods.png +%%ICINGAWWWDIR%%/docs/images/passivechecks.png +%%ICINGAWWWDIR%%/docs/images/passivehosttranslation.png +%%ICINGAWWWDIR%%/docs/images/plugins.png +%%ICINGAWWWDIR%%/docs/images/predictive-dependency-checks.png +%%ICINGAWWWDIR%%/docs/images/printer.png +%%ICINGAWWWDIR%%/docs/images/reachability1.png +%%ICINGAWWWDIR%%/docs/images/reachability2.png +%%ICINGAWWWDIR%%/docs/images/reachability3.png +%%ICINGAWWWDIR%%/docs/images/reachability4.png +%%ICINGAWWWDIR%%/docs/images/redundancy.png +%%ICINGAWWWDIR%%/docs/images/rep_avail.png +%%ICINGAWWWDIR%%/docs/images/reptop10.png +%%ICINGAWWWDIR%%/docs/images/security.png +%%ICINGAWWWDIR%%/docs/images/security1.png +%%ICINGAWWWDIR%%/docs/images/security2.png +%%ICINGAWWWDIR%%/docs/images/security3.png +%%ICINGAWWWDIR%%/docs/images/seealso.gif +%%ICINGAWWWDIR%%/docs/images/service-dependencies.png +%%ICINGAWWWDIR%%/docs/images/statetransitions.png +%%ICINGAWWWDIR%%/docs/images/statetransitions2.png +%%ICINGAWWWDIR%%/docs/images/stoprestart.png +%%ICINGAWWWDIR%%/docs/images/switch.png +%%ICINGAWWWDIR%%/docs/images/tcpwrappers.png +%%ICINGAWWWDIR%%/docs/images/tip.png +%%ICINGAWWWDIR%%/docs/images/tuning.png +%%ICINGAWWWDIR%%/docs/images/upto.gif +%%ICINGAWWWDIR%%/docs/robots.txt +%%ICINGAWWWDIR%%/docs/index.html +%%ICINGAWWWDIR%%/images/NagiosEnterprises-whitebg-112x46.png +%%ICINGAWWWDIR%%/images/ack.gif +%%ICINGAWWWDIR%%/images/action.gif +%%ICINGAWWWDIR%%/images/arrow-menu.png +%%ICINGAWWWDIR%%/images/cmd_shadow.gif +%%ICINGAWWWDIR%%/images/cmd_stop.png +%%ICINGAWWWDIR%%/images/command.png +%%ICINGAWWWDIR%%/images/comment.gif +%%ICINGAWWWDIR%%/images/contexthelp1.gif +%%ICINGAWWWDIR%%/images/contexthelp2.gif +%%ICINGAWWWDIR%%/images/critical.png +%%ICINGAWWWDIR%%/images/dd_arrow.gif +%%ICINGAWWWDIR%%/images/delay.gif +%%ICINGAWWWDIR%%/images/delete.gif +%%ICINGAWWWDIR%%/images/detail.gif +%%ICINGAWWWDIR%%/images/disabled.gif +%%ICINGAWWWDIR%%/images/down.gif +%%ICINGAWWWDIR%%/images/downtime.gif +%%ICINGAWWWDIR%%/images/empty.gif +%%ICINGAWWWDIR%%/images/enabled.gif +%%ICINGAWWWDIR%%/images/extinfo.gif +%%ICINGAWWWDIR%%/images/favicon.ico +%%ICINGAWWWDIR%%/images/flapping.gif +%%ICINGAWWWDIR%%/images/globe-support-150x150.png +%%ICINGAWWWDIR%%/images/greendot.gif +%%ICINGAWWWDIR%%/images/histogram.png +%%ICINGAWWWDIR%%/images/history.gif +%%ICINGAWWWDIR%%/images/hostevent.gif +%%ICINGAWWWDIR%%/images/icinga-logo.png +%%ICINGAWWWDIR%%/images/icinga-web-admin_groups1.png +%%ICINGAWWWDIR%%/images/icinga-web-admin_groups2.png +%%ICINGAWWWDIR%%/images/icinga-web-admin_logs1.png +%%ICINGAWWWDIR%%/images/icinga-web-admin_principals.png +%%ICINGAWWWDIR%%/images/icinga-web-admin_tasks.png +%%ICINGAWWWDIR%%/images/icinga-web-admin_users1.png +%%ICINGAWWWDIR%%/images/icinga-web-admin_users2.png +%%ICINGAWWWDIR%%/images/icinga-web-commands_hst.png +%%ICINGAWWWDIR%%/images/icinga-web-commands_hst_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-commands_svc.png +%%ICINGAWWWDIR%%/images/icinga-web-commands_svc_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-cronks1.png +%%ICINGAWWWDIR%%/images/icinga-web-cronks1_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-cronks2.png +%%ICINGAWWWDIR%%/images/icinga-web-cronks2_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-cronks3.png +%%ICINGAWWWDIR%%/images/icinga-web-cronks3_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-filter1.png +%%ICINGAWWWDIR%%/images/icinga-web-filter1_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-filter2.png +%%ICINGAWWWDIR%%/images/icinga-web-filter2_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-filter3.png +%%ICINGAWWWDIR%%/images/icinga-web-log.png +%%ICINGAWWWDIR%%/images/icinga-web-log_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-login.png +%%ICINGAWWWDIR%%/images/icinga-web-main_bar.png +%%ICINGAWWWDIR%%/images/icinga-web-mainscreen1.png +%%ICINGAWWWDIR%%/images/icinga-web-mainscreen1_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-open_problems.png +%%ICINGAWWWDIR%%/images/icinga-web-overview.png +%%ICINGAWWWDIR%%/images/icinga-web-overview_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-search1.png +%%ICINGAWWWDIR%%/images/icinga-web-search1_1.3.png +%%ICINGAWWWDIR%%/images/icinga-web-settings.png +%%ICINGAWWWDIR%%/images/icinga-web-statuscronk.png +%%ICINGAWWWDIR%%/images/icinga-web-topmenu1.png +%%ICINGAWWWDIR%%/images/icinga-web-topmenu2.png +%%ICINGAWWWDIR%%/images/icinga-web-topmenu2_1.3.png +%%ICINGAWWWDIR%%/images/icon_collapse.gif +%%ICINGAWWWDIR%%/images/icon_expand.gif +%%ICINGAWWWDIR%%/images/info.png +%%ICINGAWWWDIR%%/images/interface/Icinga_Header_Webinterface.jpg +%%ICINGAWWWDIR%%/images/interface/Icinga_Header_Webinterface_Pixel.jpg +%%ICINGAWWWDIR%%/images/interface/bar.gif +%%ICINGAWWWDIR%%/images/interface/menu_blank.gif +%%ICINGAWWWDIR%%/images/interface/menu_body.gif +%%ICINGAWWWDIR%%/images/interface/menu_less.gif +%%ICINGAWWWDIR%%/images/interface/menu_li1.gif +%%ICINGAWWWDIR%%/images/interface/menu_li2.gif +%%ICINGAWWWDIR%%/images/interface/menu_more.gif +%%ICINGAWWWDIR%%/images/left.gif +%%ICINGAWWWDIR%%/images/logofullsize.png +%%ICINGAWWWDIR%%/images/logos/icinga.gd2 +%%ICINGAWWWDIR%%/images/logos/icinga.gif +%%ICINGAWWWDIR%%/images/logos/icingavrml.png +%%ICINGAWWWDIR%%/images/logos/unknown.gd2 +%%ICINGAWWWDIR%%/images/logos/unknown.gif +%%ICINGAWWWDIR%%/images/logrotate.png +%%ICINGAWWWDIR%%/images/ndisabled.gif +%%ICINGAWWWDIR%%/images/noack.gif +%%ICINGAWWWDIR%%/images/notes.gif +%%ICINGAWWWDIR%%/images/notify.gif +%%ICINGAWWWDIR%%/images/orangedot.gif +%%ICINGAWWWDIR%%/images/passiveonly.gif +%%ICINGAWWWDIR%%/images/recovery.png +%%ICINGAWWWDIR%%/images/redudancy.png +%%ICINGAWWWDIR%%/images/redundancy.png +%%ICINGAWWWDIR%%/images/restart.gif +%%ICINGAWWWDIR%%/images/right.gif +%%ICINGAWWWDIR%%/images/sblogo.png +%%ICINGAWWWDIR%%/images/serviceevent.gif +%%ICINGAWWWDIR%%/images/sflogo.png +%%ICINGAWWWDIR%%/images/splunk1.gif +%%ICINGAWWWDIR%%/images/splunk2.gif +%%ICINGAWWWDIR%%/images/start.gif +%%ICINGAWWWDIR%%/images/status.gif +%%ICINGAWWWDIR%%/images/status2.gif +%%ICINGAWWWDIR%%/images/status3.gif +%%ICINGAWWWDIR%%/images/status4.gif +%%ICINGAWWWDIR%%/images/stop.gif +%%ICINGAWWWDIR%%/images/tacdisabled.jpg +%%ICINGAWWWDIR%%/images/tacdisabled.png +%%ICINGAWWWDIR%%/images/tacenabled.jpg +%%ICINGAWWWDIR%%/images/tacenabled.png +%%ICINGAWWWDIR%%/images/thermcrit.png +%%ICINGAWWWDIR%%/images/thermok.png +%%ICINGAWWWDIR%%/images/thermwarn.png +%%ICINGAWWWDIR%%/images/trends.gif +%%ICINGAWWWDIR%%/images/trendshost.png +%%ICINGAWWWDIR%%/images/trendssvc.png +%%ICINGAWWWDIR%%/images/unknown.png +%%ICINGAWWWDIR%%/images/up.gif +%%ICINGAWWWDIR%%/images/warning.png +%%ICINGAWWWDIR%%/images/weblogo1.png +%%ICINGAWWWDIR%%/images/zoom1.gif +%%ICINGAWWWDIR%%/images/zoom2.gif +%%ICINGAWWWDIR%%/js/builder.js +%%ICINGAWWWDIR%%/js/checkbox_functions.js +%%ICINGAWWWDIR%%/js/controls.js +%%ICINGAWWWDIR%%/js/dragdrop.js +%%ICINGAWWWDIR%%/js/effects.js +%%ICINGAWWWDIR%%/js/jquery-1.4.2.min.js +%%ICINGAWWWDIR%%/js/jquery.dd.js +%%ICINGAWWWDIR%%/js/menu.js +%%ICINGAWWWDIR%%/js/mootools.js +%%ICINGAWWWDIR%%/js/prototype.js +%%ICINGAWWWDIR%%/js/scriptaculous.js +%%ICINGAWWWDIR%%/js/skinnytip.js +%%ICINGAWWWDIR%%/js/slider.js +%%ICINGAWWWDIR%%/js/sound.js +%%ICINGAWWWDIR%%/robots.txt +%%ICINGAWWWDIR%%/index.html +%%ICINGAWWWDIR%%/main.html +%%ICINGAWWWDIR%%/menu.html +%%ICINGAWWWDIR%%/sidebar.html +%%ICINGAWWWDIR%%/top.html +%%ICINGAWWWDIR%%/icinga-api/objects/command/IcingaApiCommand.php +%%ICINGAWWWDIR%%/icinga-api/objects/command/IcingaApiCommandCollection.php +%%ICINGAWWWDIR%%/icinga-api/objects/command/IcingaApiCommandDispatcher.php +%%ICINGAWWWDIR%%/icinga-api/objects/command/IcingaApiCommandInterface.php +%%ICINGAWWWDIR%%/icinga-api/objects/command/IcingaApiCommandSend.php +%%ICINGAWWWDIR%%/icinga-api/objects/command/IcingaApiCommandSendPipe.php +%%ICINGAWWWDIR%%/icinga-api/objects/command/IcingaApiCommandSendSsh.php +%%ICINGAWWWDIR%%/icinga-api/objects/connection/IcingaApiConnection.php +%%ICINGAWWWDIR%%/icinga-api/objects/connection/IcingaApiConnectionDatabase.php +%%ICINGAWWWDIR%%/icinga-api/objects/connection/IcingaApiConnectionFile.php +%%ICINGAWWWDIR%%/icinga-api/objects/connection/IcingaApiConnectionIdo.php +%%ICINGAWWWDIR%%/icinga-api/objects/connection/IcingaApiConnectionInterface.php +%%ICINGAWWWDIR%%/icinga-api/objects/connection/IcingaApiConnectionLivestatus.php +%%ICINGAWWWDIR%%/icinga-api/objects/conversion/IcingaApiConversionTime.php +%%ICINGAWWWDIR%%/icinga-api/objects/debug/debugTargets/icingaApiDebuggerTargetInterface.php +%%ICINGAWWWDIR%%/icinga-api/objects/debug/debugTargets/icingaApiEchoDebugger.php +%%ICINGAWWWDIR%%/icinga-api/objects/debug/debugTargets/icingaApiFileDebugger.php +%%ICINGAWWWDIR%%/icinga-api/objects/debug/icingaApiDebugger.php +%%ICINGAWWWDIR%%/icinga-api/objects/result/IcingaApiResult.php +%%ICINGAWWWDIR%%/icinga-api/objects/result/IcingaApiResultFile.php +%%ICINGAWWWDIR%%/icinga-api/objects/result/IcingaApiResultIdo.php +%%ICINGAWWWDIR%%/icinga-api/objects/result/IcingaApiResultInterface.php +%%ICINGAWWWDIR%%/icinga-api/objects/result/IcingaApiResultLivestatus.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/data_interfaces/IcingaApiSearchIdoInterface.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/data_interfaces/IcingaApiSearchIdoMysql.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/data_interfaces/IcingaApiSearchIdoOci.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/data_interfaces/IcingaApiSearchIdoOci8.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/data_interfaces/IcingaApiSearchIdoPgsql.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/data_interfaces/IcingaApiSearchLivestatusSocket.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/filter/IcingaApiSearchFilter.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/filter/IcingaApiSearchFilterGroup.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/filter/IcingaApiSearchFilterGroupIdo.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/filter/IcingaApiSearchFilterIdo.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/filter/IcingaApiSearchFilterInterface.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/IcingaApiSearch.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/IcingaApiSearchColumnsFile.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/IcingaApiSearchFile.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/IcingaApiSearchIdo.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/IcingaApiSearchInterface.php +%%ICINGAWWWDIR%%/icinga-api/objects/search/IcingaApiSearchLivestatus.php +%%ICINGAWWWDIR%%/icinga-api/objects/ociPDO/PDO/ociPDO.php +%%ICINGAWWWDIR%%/icinga-api/objects/ociPDO/PDO/ociPDOStatement.php +%%ICINGAWWWDIR%%/icinga-api/objects/ociPDO/icingaApiPDO.php +%%ICINGAWWWDIR%%/icinga-api/objects/IcingaApiConstantsInterface.php +%%ICINGAWWWDIR%%/icinga-api/log/PLACEHOLDER +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/apiSearchDefinitions/custom.ini +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/apiSearchDefinitions/icinga-web.ini +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/apiSearchDefinitions/objectsearch.ini +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testDatabases/mysql_delete.sql +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testDatabases/mysql_dump.sql +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testDatabases/mysql_schema.sql +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testDatabases/oci8_delete.sql +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testDatabases/oci8_schema.sql +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testDatabases/oracle_dump.sql +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testDatabases/pgsql.sql +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/dbConfig.php +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/idoConnectionTest.php +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/idoCreateSearchTest.php +%%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testSuite.php +%%ICINGAWWWDIR%%/icinga-api/tests/icingaApiTests.php +%%ICINGAWWWDIR%%/icinga-api/contrib/ido2dbparser/Ido2dbParser.php +%%ICINGAWWWDIR%%/icinga-api/IcingaApi.php +@dirrmtry %%ICINGAWWWDIR%%/stylesheets/interface +@dirrmtry %%ICINGAWWWDIR%%/stylesheets +@dirrmtry %%ICINGAWWWDIR%%/ssi +@dirrmtry %%ICINGAWWWDIR%%/media +@dirrmtry %%ICINGAWWWDIR%%/js +@dirrmtry %%ICINGAWWWDIR%%/images/logos +@dirrmtry %%ICINGAWWWDIR%%/images/interface +@dirrmtry %%ICINGAWWWDIR%%/images +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/tests/idoTests/testDatabases +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/tests/idoTests/apiSearchDefinitions +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/tests/idoTests +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/tests +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/search/filter +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/search/data_interfaces +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/search +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/result +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/ociPDO/PDO +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/ociPDO +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/debug/debugTargets +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/debug +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/conversion +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/connection +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects/command +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/objects +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/log +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/contrib/ido2dbparser +@dirrmtry %%ICINGAWWWDIR%%/icinga-api/contrib +@dirrmtry %%ICINGAWWWDIR%%/icinga-api +@dirrmtry %%ICINGAWWWDIR%%/doxygen/html +@dirrmtry %%ICINGAWWWDIR%%/doxygen +@dirrmtry %%ICINGAWWWDIR%%/docs/images/flags +@dirrmtry %%ICINGAWWWDIR%%/docs/images +@dirrmtry %%ICINGAWWWDIR%%/docs/en +@dirrmtry %%ICINGAWWWDIR%%/docs/de +@dirrmtry %%ICINGAWWWDIR%%/docs +@dirrmtry %%ICINGAWWWDIR%%/contexthelp +@dirrmtry %%ICINGAWWWDIR%%/cgi-bin +@dirrmtry %%ICINGAWWWDIR%% +@dirrmtry libexec/icinga +@dirrmtry etc/icinga/objects +@dirrmtry etc/icinga +@dirrmtry %%ICINGADIR%%/archives +@dirrmtry %%ICINGADIR%%/checkresults +@dirrmtry %%ICINGADIR%%/rw +@dirrmtry %%ICINGADIR%% |