net-mgmt/pnp: update to 0.6.7
- update sources to 0.6.7 -- the tip of 0.6-series; - reworked patches and grouped them by-commit rather than by-file; - excluded removal of .orig files -- all files aren't installed anymore; - changed maintainer (my) e-mail. Approved by: garga (mentor) PR: ports/151118
This commit is contained in:
parent
7624a8e927
commit
981d45c88b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=265033
@ -6,30 +6,32 @@
|
||||
#
|
||||
|
||||
PORTNAME= pnp
|
||||
PORTVERSION= 0.4.14
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 0.6.7
|
||||
CATEGORIES= net-mgmt
|
||||
MASTER_SITES= SF/${PORTNAME}4nagios/PNP/${PORTNAME}-${PORTVERSION}
|
||||
MASTER_SITES= SF
|
||||
MASTER_SITE_SUBDIR=pnp4nagios/PNP-0.6
|
||||
DISTNAME= pnp4nagios-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}
|
||||
|
||||
MAINTAINER= rea-fbsd@codelabs.ru
|
||||
MAINTAINER= rea@FreeBSD.org
|
||||
COMMENT= Nagios performance data collector and grapher
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/bin/rrdtool:${PORTSDIR}/databases/rrdtool
|
||||
RUN_DEPENDS= ${LOCALBASE}/bin/rrdtool:${PORTSDIR}/databases/rrdtool \
|
||||
nagios:${PORTSDIR}/net-mgmt/nagios
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
||||
OPTIONS= PDF "Use built-in fpdf library to produce PDF views" ON
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
USE_PHP= zlib gd xml pcre
|
||||
USE_DOS2UNIX= yes
|
||||
DOS2UNIX_REGEX= '.*\.\(php\|js\|txt\)$$'
|
||||
LICENSE= GPLv2
|
||||
PATCH_STRIP= -p1
|
||||
USE_PERL5= yes
|
||||
USE_PHP= zlib gd xml pcre filter iconv json simplexml
|
||||
WANT_PHP_WEB= yes
|
||||
USE_RC_SUBR= npcd.sh
|
||||
MAN1= pnpsender.1
|
||||
MAN8= npcd.8
|
||||
USE_DOS2UNIX= yes
|
||||
DOS2UNIX_REGEX= '.*\.\(php\|js\|txt\)$$'
|
||||
|
||||
NAGIOSDIR?= /var/spool/nagios
|
||||
NAGIOSHTMURL?= /nagios
|
||||
@ -39,9 +41,10 @@ PNP_STATE= ${NAGIOSDIR}/pnp
|
||||
PNP_RRDS= ${PNP_STATE}/rrd
|
||||
PNP_SPOOL= ${PNP_STATE}/perfspool
|
||||
FPDF_DIR?= share/fpdf
|
||||
SPOOL_DIRS= ${PNP_STATE}:${NAGIOSUSER}:${NAGIOSGROUP}:0750%${PNP_RRDS}:${NAGIOSUSER}:${NAGIOSGROUP}:0750%${PNP_SPOOL}:${NAGIOSUSER}:${NAGIOSGROUP}:0750
|
||||
|
||||
.if !defined(WITH_PDF)
|
||||
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-share__pnp__include__function.inc.php
|
||||
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-disable-pdf
|
||||
.endif
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
@ -64,22 +67,11 @@ INSTALL_TARGET= install install-config
|
||||
SUB_FILES= pkg-install \
|
||||
pkg-deinstall \
|
||||
pkg-message
|
||||
SUB_LIST= PNP_STATE=${PNP_STATE} \
|
||||
SUB_LIST= SPOOL_DIRS=${SPOOL_DIRS} \
|
||||
PNP_RRDS=${PNP_RRDS} \
|
||||
PNP_SPOOL=${PNP_SPOOL} \
|
||||
NAGIOSUSER=${NAGIOSUSER} \
|
||||
NAGIOSGROUP=${NAGIOSGROUP}
|
||||
|
||||
# All files in share/pnp/include/ are installed, so if we patched something
|
||||
# in that directory, we must clean the '.orig' files -- they shouldn't be
|
||||
# installed.
|
||||
PNP_CLEAN_PATCHED= share/pnp/include/font/makefont/makefont.php.orig \
|
||||
share/pnp/include/fpdi.php.orig \
|
||||
share/pnp/include/fpdi_pdf_parser.php.orig \
|
||||
share/pnp/include/function.inc.php.orig \
|
||||
share/pnp/include/pdf_parser.php.orig \
|
||||
share/pnp/include/site.php.orig
|
||||
|
||||
.if defined(WITH_PDF)
|
||||
PNP_USE_FPDF= 1
|
||||
.else
|
||||
@ -90,15 +82,14 @@ post-patch:
|
||||
-e's|^\$$conf\['\''use_fpdf'\''\] = [[:digit:]];|$$conf['\''use_fpdf'\''] = ${PNP_USE_FPDF};|' \
|
||||
-e's|^\$$conf\['\''nagios_base'\''\] = "/nagios/cgi-bin";|$$conf\['\''nagios_base'\''\] = "${NAGIOSHTMURL}/cgi-bin";|' \
|
||||
"${WRKSRC}/sample-config/pnp/config.php.in"
|
||||
.for pch in ${PNP_CLEAN_PATCHED}
|
||||
@${RM} -f "${WRKSRC}/${pch}"
|
||||
.endfor
|
||||
|
||||
pre-install:
|
||||
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
||||
|
||||
post-install:
|
||||
.for m in ${MAN1}
|
||||
${INSTALL_MAN} ${WRKSRC}/man/man1/${m} ${MAN1PREFIX}/man/man1/${m}
|
||||
.for m in ${MAN8}
|
||||
${INSTALL_MAN} ${WRKSRC}/man/${m} ${MAN1PREFIX}/man/man8/${m}
|
||||
.endfor
|
||||
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,2 @@
|
||||
MD5 (pnp-0.4.14.tar.gz) = 9dbbf08191a258f6798c9516b3821ff0
|
||||
SHA256 (pnp-0.4.14.tar.gz) = e0f1ba160ec5757e130af7c5ad11944766d97bc3c3e93d9bf9b782a05902760f
|
||||
SIZE (pnp-0.4.14.tar.gz) = 455593
|
||||
SHA256 (pnp4nagios-0.6.7.tar.gz) = 010128d1ed13afed1cc313264b10807b60b7dc596d0e9e86c0ac7208d0df5878
|
||||
SIZE (pnp4nagios-0.6.7.tar.gz) = 1874012
|
||||
|
86
net-mgmt/pnp/files/extra-patch-disable-pdf
Normal file
86
net-mgmt/pnp/files/extra-patch-disable-pdf
Normal file
@ -0,0 +1,86 @@
|
||||
From 9c588aefedcdcd15a4bc61bf6a33c10818107390 Mon Sep 17 00:00:00 2001
|
||||
From: Eygene Ryabinkin <rea-fbsd@codelabs.ru>
|
||||
Date: Thu, 18 Nov 2010 15:47:59 +0300
|
||||
Subject: [PATCH 3/3] Disable PDF generation
|
||||
|
||||
This patch allows to completely disable generation of PDF files
|
||||
via any means. It used to support WITHOUT_PDF knob of FreeBSD port.
|
||||
|
||||
Signed-off-by: Eygene Ryabinkin <rea-fbsd@codelabs.ru>
|
||||
---
|
||||
share/pnp/application/controllers/pdf.php | 4 ++++
|
||||
share/pnp/application/models/rrdtool.php | 1 +
|
||||
share/pnp/application/views/icon_box.php | 9 ---------
|
||||
3 files changed, 5 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git a/share/pnp/application/controllers/pdf.php b/share/pnp/application/controllers/pdf.php
|
||||
index 36ef2a7..aa48d1f 100644
|
||||
--- a/share/pnp/application/controllers/pdf.php
|
||||
+++ b/share/pnp/application/controllers/pdf.php
|
||||
@@ -13,6 +13,7 @@ class Pdf_Controller extends System_Controller {
|
||||
|
||||
public function __construct(){
|
||||
parent::__construct();
|
||||
+ exit;
|
||||
|
||||
$this->use_bg = 0;
|
||||
$this->bg = $this->config->conf['background_pdf'];
|
||||
@@ -33,6 +34,7 @@ class Pdf_Controller extends System_Controller {
|
||||
}
|
||||
|
||||
public function index(){
|
||||
+ exit;
|
||||
|
||||
$this->host = $this->input->get('host');
|
||||
$this->service = $this->input->get('srv');
|
||||
@@ -144,6 +146,7 @@ class Pdf_Controller extends System_Controller {
|
||||
}
|
||||
|
||||
public function page($page){
|
||||
+ exit;
|
||||
$this->start = $this->input->get('start');
|
||||
$this->end = $this->input->get('end');
|
||||
$this->view = "";
|
||||
@@ -206,6 +209,7 @@ class Pdf_Controller extends System_Controller {
|
||||
}
|
||||
|
||||
public function basket(){
|
||||
+ exit;
|
||||
$this->start = $this->input->get('start');
|
||||
$this->end = $this->input->get('end');
|
||||
$this->view = "";
|
||||
diff --git a/share/pnp/application/models/rrdtool.php b/share/pnp/application/models/rrdtool.php
|
||||
index 2c18b4e..2a24996 100644
|
||||
--- a/share/pnp/application/models/rrdtool.php
|
||||
+++ b/share/pnp/application/models/rrdtool.php
|
||||
@@ -79,6 +79,7 @@ class Rrdtool_Model extends Model
|
||||
$width = 0;
|
||||
$height = 0;
|
||||
if ($out == 'PDF'){
|
||||
+ exit;
|
||||
if($conf['pdf_graph_opt']){
|
||||
$command .= $conf['pdf_graph_opt'];
|
||||
}
|
||||
diff --git a/share/pnp/application/views/icon_box.php b/share/pnp/application/views/icon_box.php
|
||||
index 7ce5301..838b474 100644
|
||||
--- a/share/pnp/application/views/icon_box.php
|
||||
+++ b/share/pnp/application/views/icon_box.php
|
||||
@@ -9,15 +9,6 @@ $qsa = pnp::addToUri(array('start' => $this->start,'end' => $this->end, 'view'
|
||||
if($this->config->conf['use_calendar']){
|
||||
echo "<a title=\"".Kohana::lang('common.title-calendar-link')."\" href=\"#\" id=\"button\"><img class=\"icon\" src=\"".url::base()."media/images/calendar.png\"></a>";
|
||||
}
|
||||
-if($this->config->conf['use_fpdf'] == 1 && ( $position == "graph" || $position == "special") ){
|
||||
- echo "<a title=\"".Kohana::lang('common.title-pdf-link')."\" href=\"".url::base(TRUE)."pdf".$qsa."\"><img class=\"icon\" src=\"".url::base()."media/images/pdf.png\"></a>\n";
|
||||
-}
|
||||
-if($this->config->conf['use_fpdf'] == 1 && $position == "basket"){
|
||||
- echo "<a title=\"".Kohana::lang('common.title-pdf-link')."\" href=\"".url::base(TRUE)."pdf/basket/".$qsa."\"><img class=\"icon\" src=\"".url::base()."media/images/pdf.png\"></a>\n";
|
||||
-}
|
||||
-if($this->config->conf['use_fpdf'] == 1 && $position == "page"){
|
||||
- echo "<a title=\"".Kohana::lang('common.title-pdf-link')."\" href=\"".url::base(TRUE)."pdf/page/".$this->page.$qsa."\"><img class=\"icon\" src=\"".url::base()."media/images/pdf.png\"></a>\n";
|
||||
-}
|
||||
if($this->config->conf['show_xml_icon'] == 1 && $position == "graph"){
|
||||
$qsa = pnp::addToUri(array(), False);
|
||||
echo "<a title=\"".Kohana::lang('common.title-xml-link')."\" href=\"".url::base(TRUE)."xml".$qsa."\"><img class=\"icon\" src=\"".url::base()."media/images/xml.png\"></a>\n";
|
||||
--
|
||||
1.7.2.1
|
||||
|
@ -1,18 +0,0 @@
|
||||
--- share/pnp/include/function.inc.php.orig 2009-05-02 13:25:24.000000000 +0400
|
||||
+++ share/pnp/include/function.inc.php 2009-07-02 19:05:07.000000000 +0400
|
||||
@@ -999,6 +999,7 @@
|
||||
}
|
||||
|
||||
function doPDF($display,$data) {
|
||||
+ exit;
|
||||
require ('fpdi.php');
|
||||
global $NAGIOS;
|
||||
global $conf;
|
||||
@@ -1443,6 +1444,7 @@
|
||||
}
|
||||
|
||||
function doPDFIcon($type){
|
||||
+ return;
|
||||
global $hostname;
|
||||
global $servicedesc;
|
||||
global $special;
|
@ -1,6 +1,20 @@
|
||||
--- ./sample-config/Makefile.in.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./sample-config/Makefile.in 2010-05-29 23:27:44.000000000 +0200
|
||||
@@ -27,23 +27,19 @@
|
||||
From cccbb033458f205ac74e11babe5021bc7a3ade3c Mon Sep 17 00:00:00 2001
|
||||
From: Eygene Ryabinkin <rea-fbsd@codelabs.ru>
|
||||
Date: Wed, 17 Nov 2010 19:47:16 +0300
|
||||
Subject: [PATCH 1/3] Do not overwrite configuration files
|
||||
|
||||
Install all configuration files as *-sample.
|
||||
|
||||
Signed-off-by: Eygene Ryabinkin <rea-fbsd@codelabs.ru>
|
||||
---
|
||||
sample-config/Makefile.in | 8 +++-----
|
||||
1 files changed, 3 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/sample-config/Makefile.in b/sample-config/Makefile.in
|
||||
index 883345c..1eac2c1 100644
|
||||
--- a/sample-config/Makefile.in
|
||||
+++ b/sample-config/Makefile.in
|
||||
@@ -31,14 +31,12 @@ distclean: clean
|
||||
devclean: distclean
|
||||
|
||||
install:
|
||||
@ -16,9 +30,8 @@
|
||||
+ $(INSTALL) -m 644 $(INSTALL_OPTS) pnp/background.pdf $(DESTDIR)$(SYSCONFDIR)/background.pdf-sample
|
||||
|
||||
install-config:
|
||||
- -rm -f $(DESTDIR)$(HTMLDIR)/conf/config.php
|
||||
-
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)
|
||||
|
||||
@@ -46,7 +44,7 @@ install-config:
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/check_commands
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/pages
|
||||
|
||||
@ -26,4 +39,7 @@
|
||||
+ $(INSTALL) -m 644 $(INSTALL_OPTS) pnp/config.php $(DESTDIR)$(SYSCONFDIR)/config.php-sample
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/process_perfdata.cfg-sample $(DESTDIR)$(SYSCONFDIR)
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/rra.cfg-sample $(DESTDIR)$(SYSCONFDIR)
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/check_commands/check_nwstat.cfg-sample $(DESTDIR)$(SYSCONFDIR)/check_commands
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) misccommands.cfg-sample $(DESTDIR)$(SYSCONFDIR)
|
||||
--
|
||||
1.7.2.1
|
||||
|
124
net-mgmt/pnp/files/patch-0020-directory-creation
Normal file
124
net-mgmt/pnp/files/patch-0020-directory-creation
Normal file
@ -0,0 +1,124 @@
|
||||
From 0f6181db74e4a2f53837c5e9b5639cdfb63ee2e1 Mon Sep 17 00:00:00 2001
|
||||
From: Eygene Ryabinkin <rea-fbsd@codelabs.ru>
|
||||
Date: Thu, 18 Nov 2010 15:22:03 +0300
|
||||
Subject: [PATCH 2/3] Rework directory creation during install phase
|
||||
|
||||
Don't create existing system and log-like directories to avoid
|
||||
changing their permissions.
|
||||
|
||||
Signed-off-by: Eygene Ryabinkin <rea-fbsd@codelabs.ru>
|
||||
---
|
||||
lib/Makefile.in | 2 +-
|
||||
sample-config/Makefile.in | 14 +++++++-------
|
||||
scripts/Makefile.in | 8 ++++----
|
||||
share/Makefile.in | 2 +-
|
||||
src/Makefile.in | 10 +++++-----
|
||||
5 files changed, 18 insertions(+), 18 deletions(-)
|
||||
|
||||
diff --git a/lib/Makefile.in b/lib/Makefile.in
|
||||
index b103bc8..0e0f8d8 100644
|
||||
--- a/lib/Makefile.in
|
||||
+++ b/lib/Makefile.in
|
||||
@@ -22,7 +22,7 @@ devclean: distclean
|
||||
|
||||
install:
|
||||
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)
|
||||
+ [ -d "$(DESTDIR)$(LIBDIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)/kohana
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)/kohana/system
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)/kohana/system/controllers
|
||||
diff --git a/sample-config/Makefile.in b/sample-config/Makefile.in
|
||||
index 1eac2c1..a841fbb 100644
|
||||
--- a/sample-config/Makefile.in
|
||||
+++ b/sample-config/Makefile.in
|
||||
@@ -31,19 +31,19 @@ distclean: clean
|
||||
devclean: distclean
|
||||
|
||||
install:
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/check_commands
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/pages
|
||||
+ [ -d "$(DESTDIR)$(SYSCONFDIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)
|
||||
+ [ -d "$(DESTDIR)$(SYSCONFDIR)"/check_commands ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/check_commands
|
||||
+ [ -d "$(DESTDIR)$(SYSCONFDIR)"/pages ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/pages
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/pnp4nagios_release $(DESTDIR)$(SYSCONFDIR)
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/config.php $(DESTDIR)$(SYSCONFDIR)/config.php-sample
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/background.pdf $(DESTDIR)$(SYSCONFDIR)/background.pdf-sample
|
||||
|
||||
install-config:
|
||||
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/check_commands
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/pages
|
||||
-
|
||||
+ [ -d "$(DESTDIR)$(SYSCONFDIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)
|
||||
+ [ -d "$(DESTDIR)$(SYSCONFDIR)"/check_commands ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/check_commands
|
||||
+ [ -d "$(DESTDIR)$(SYSCONFDIR)"/pages ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/pages
|
||||
+
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/config.php $(DESTDIR)$(SYSCONFDIR)/config.php-sample
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/process_perfdata.cfg-sample $(DESTDIR)$(SYSCONFDIR)
|
||||
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/rra.cfg-sample $(DESTDIR)$(SYSCONFDIR)
|
||||
diff --git a/scripts/Makefile.in b/scripts/Makefile.in
|
||||
index 44f0506..8addf27 100644
|
||||
--- a/scripts/Makefile.in
|
||||
+++ b/scripts/Makefile.in
|
||||
@@ -25,7 +25,7 @@ distclean: clean
|
||||
devclean: distclean
|
||||
|
||||
install-init:
|
||||
- $(INSTALL) -m 755 $(INIT_OPTS) -d $(DESTDIR)$(INIT_DIR)
|
||||
+ [ -d "$(DESTDIR)$(INIT_DIR)" ] || $(INSTALL) -m 755 $(INIT_OPTS) -d $(DESTDIR)$(INIT_DIR)
|
||||
$(INSTALL) -m 755 $(INIT_OPTS) rc.npcd $(DESTDIR)$(INIT_DIR)/npcd
|
||||
|
||||
install-processperfdata:
|
||||
@@ -41,9 +41,9 @@ install-rrdconvert:
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) rrd_convert.pl $(DESTDIR)$(LIBEXECDIR)
|
||||
|
||||
install:
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(PERFDATADIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBEXECDIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)/stats
|
||||
+ [ -d "$(DESTDIR)$(PERFDATADIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(PERFDATADIR)
|
||||
+ [ -d "$(DESTDIR)$(LIBEXECDIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBEXECDIR)
|
||||
+ [ -d "$(DESTDIR)$(LOGDIR)"/stats ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)/stats
|
||||
$(MAKE) install-processperfdata
|
||||
$(MAKE) install-plugins
|
||||
$(MAKE) install-verifyconfig
|
||||
diff --git a/share/Makefile.in b/share/Makefile.in
|
||||
index 2c4c55d..fd6713d 100644
|
||||
--- a/share/Makefile.in
|
||||
+++ b/share/Makefile.in
|
||||
@@ -22,7 +22,7 @@ distclean: clean
|
||||
devclean: distclean
|
||||
|
||||
install:
|
||||
- $(INSTALL) -m 777 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)/kohana
|
||||
+ [ -d "$(DESTDIR)$(LOGDIR)"/kohana ] || $(INSTALL) -m 777 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)/kohana
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(DATAROOTDIR)
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(DATAROOTDIR)/documents
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(DATAROOTDIR)/documents/_media
|
||||
diff --git a/src/Makefile.in b/src/Makefile.in
|
||||
index b4323b4..9439f25 100644
|
||||
--- a/src/Makefile.in
|
||||
+++ b/src/Makefile.in
|
||||
@@ -124,11 +124,11 @@ install-unstripped:
|
||||
$(MAKE) install-basic
|
||||
|
||||
install-basic:
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(PERFDATA_DIR)
|
||||
- $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(PERFDATA_SPOOL_DIR)
|
||||
+ [ -d "$(DESTDIR)$(BINDIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR)
|
||||
+ [ -d "$(DESTDIR)$(LIBDIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)
|
||||
+ [ -d "$(DESTDIR)$(LOGDIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)
|
||||
+ [ -d "$(DESTDIR)$(PERFDATA_DIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(PERFDATA_DIR)
|
||||
+ [ -d "$(DESTDIR)$(PERFDATA_SPOOL_DIR)" ] || $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(PERFDATA_SPOOL_DIR)
|
||||
$(INSTALL) -m 754 $(INSTALL_OPTS) @npcd_name@ $(DESTDIR)$(BINDIR)
|
||||
$(INSTALL) -m 754 $(INSTALL_OPTS) npcdmod.o $(DESTDIR)$(LIBDIR)
|
||||
|
||||
--
|
||||
1.7.2.1
|
||||
|
@ -1,10 +0,0 @@
|
||||
--- ./man/Makefile.in.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./man/Makefile.in 2010-05-29 23:27:44.000000000 +0200
|
||||
@@ -36,7 +36,6 @@
|
||||
devclean: distclean
|
||||
|
||||
install:
|
||||
- $(MAKE) install-basic
|
||||
|
||||
install-basic:
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(MANDIR)/man1/
|
@ -1,23 +0,0 @@
|
||||
--- ./scripts/Makefile.in.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./scripts/Makefile.in 2010-05-29 23:27:44.000000000 +0200
|
||||
@@ -25,7 +25,6 @@
|
||||
devclean: distclean
|
||||
|
||||
install-init:
|
||||
- $(INSTALL) -m 755 $(INIT_OPTS) -d $(DESTDIR)$(INIT_DIR)
|
||||
$(INSTALL) -m 755 $(INIT_OPTS) rc.npcd $(DESTDIR)$(INIT_DIR)/npcd
|
||||
|
||||
install-processperfdata:
|
||||
@@ -35,12 +34,9 @@
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) check_pnp_rrds.pl $(DESTDIR)$(LIBEXECDIR)
|
||||
|
||||
install-net2pnp:
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR)
|
||||
$(INSTALL) -m 755 $(INSTALL_OPTS) net2pnp.pl $(DESTDIR)$(BINDIR)
|
||||
|
||||
install:
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(PERFDATADIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBEXECDIR)
|
||||
$(MAKE) install-processperfdata
|
||||
$(MAKE) install-plugins
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- ./share/pnp/include/font/makefont/makefont.php.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./share/pnp/include/font/makefont/makefont.php 2010-05-29 23:30:23.000000000 +0200
|
||||
@@ -171,7 +171,7 @@
|
||||
//StemV
|
||||
if(isset($fm['StdVW']))
|
||||
$stemv=$fm['StdVW'];
|
||||
- elseif(isset($fm['Weight']) and eregi('(bold|black)',$fm['Weight']))
|
||||
+ elseif(isset($fm['Weight']) and preg_match('/(bold|black)/i',$fm['Weight']))
|
||||
$stemv=120;
|
||||
else
|
||||
$stemv=70;
|
@ -1,11 +0,0 @@
|
||||
--- ./share/pnp/include/fpdi.php.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./share/pnp/include/fpdi.php 2010-05-29 23:27:44.000000000 +0200
|
||||
@@ -93,7 +93,7 @@
|
||||
$fn =& $this->current_filename;
|
||||
|
||||
if (!isset($this->parsers[$fn]))
|
||||
- $this->parsers[$fn] =& new fpdi_pdf_parser($fn,$this);
|
||||
+ $this->parsers[$fn] = new fpdi_pdf_parser($fn,$this);
|
||||
$this->current_parser =& $this->parsers[$fn];
|
||||
|
||||
return $this->parsers[$fn]->getPageCount();
|
@ -1,11 +0,0 @@
|
||||
--- ./share/pnp/include/fpdi_pdf_parser.php.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./share/pnp/include/fpdi_pdf_parser.php 2010-05-29 23:27:44.000000000 +0200
|
||||
@@ -242,7 +242,7 @@
|
||||
if (preg_match("/^\/[a-z85]*$/i", $_filter[1], $filterName) && @include_once('decoders'.$_filter[1].'.php')) {
|
||||
$filterName = substr($_filter[1],1);
|
||||
if (class_exists($filterName)) {
|
||||
- $decoder =& new $filterName($this->fpdi);
|
||||
+ $decoder = new $filterName($this->fpdi);
|
||||
$stream = $decoder->decode(trim($stream));
|
||||
} else {
|
||||
$this->fpdi->error(sprintf("Unsupported Filter: %s",$_filter[1]));
|
@ -1,29 +0,0 @@
|
||||
--- ./share/pnp/include/function.inc.php.orig 2010-05-29 21:26:22.000000000 +0200
|
||||
+++ ./share/pnp/include/function.inc.php 2010-05-29 21:32:24.000000000 +0200
|
||||
@@ -1030,7 +1030,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- $pdf =& new PDF('P', 'mm', 'A4');
|
||||
+ $pdf = new PDF('P', 'mm', 'A4');
|
||||
$pdf->AliasNbPages();
|
||||
$pdf->SetAutoPageBreak('off');
|
||||
$pdf->SetMargins(12.5,25,10);
|
||||
@@ -1540,7 +1540,7 @@
|
||||
$NAGIOS['RRD'][$tag][$dsl] = urldecode($value);
|
||||
}
|
||||
|
||||
- if($level == 2 && $type == "complete" && eregi("^NAGIOS_",$tag)){
|
||||
+ if($level == 2 && $type == "complete" && preg_match("/^NAGIOS_/i",$tag)){
|
||||
if(isset($xml_elem['value'])){
|
||||
$value = $xml_elem['value'];
|
||||
}else{
|
||||
@@ -1571,7 +1571,7 @@
|
||||
$PAGE="";
|
||||
$allowed_tags = array("page", "graph");
|
||||
foreach($data as $line){
|
||||
- if(ereg('(^#|^;)',$line)) {
|
||||
+ if(preg_match('/(^#|^;)/',$line)) {
|
||||
continue;
|
||||
}
|
||||
|
@ -1,29 +0,0 @@
|
||||
--- ./share/pnp/include/pdf_parser.php.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./share/pnp/include/pdf_parser.php 2010-05-29 23:31:23.000000000 +0200
|
||||
@@ -91,7 +91,7 @@
|
||||
|
||||
$this->getPDFVersion();
|
||||
|
||||
- $this->c =& new pdf_context($this->f);
|
||||
+ $this->c = new pdf_context($this->f);
|
||||
// Read xref-Data
|
||||
$this->pdf_read_xref($this->xref, $this->pdf_find_xref());
|
||||
|
||||
@@ -257,7 +257,7 @@
|
||||
fseek($this->f, $o_pos+strlen($m[1]));
|
||||
}
|
||||
|
||||
- $c =& new pdf_context($this->f);
|
||||
+ $c = new pdf_context($this->f);
|
||||
$trailer = $this->pdf_read_value($c);
|
||||
|
||||
if (isset($trailer[1]['/Prev'])) {
|
||||
@@ -423,7 +423,7 @@
|
||||
$e++;
|
||||
|
||||
if ($this->actual_obj[1][1]['/Length'][0] == PDF_TYPE_OBJREF) {
|
||||
- $tmp_c =& new pdf_context($this->f);
|
||||
+ $tmp_c = new pdf_context($this->f);
|
||||
$tmp_length = $this->pdf_resolve_object($tmp_c,$this->actual_obj[1][1]['/Length']);
|
||||
$length = $tmp_length[1][1];
|
||||
} else {
|
@ -1,11 +0,0 @@
|
||||
--- ./share/pnp/include/site.php.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./share/pnp/include/site.php 2010-05-29 23:27:44.000000000 +0200
|
||||
@@ -30,7 +30,7 @@
|
||||
$a = 0;
|
||||
|
||||
while (isset($file[$l]) && $file[$l] != "") {
|
||||
- if(!ereg("^#",$file[$l]) && !ereg("^;",$file[$l])) {
|
||||
+ if(!preg_match("/^#/",$file[$l]) && !preg_match("/^;/",$file[$l])) {
|
||||
$defineCln = explode("{", $file[$l]);
|
||||
$define = explode(" ",$defineCln[0]);
|
||||
if (isset($define[1]) && in_array(trim($define[1]),$type)) {
|
@ -1,11 +0,0 @@
|
||||
--- ./src/Makefile.in.orig 2010-05-29 23:27:44.000000000 +0200
|
||||
+++ ./src/Makefile.in 2010-05-29 23:27:44.000000000 +0200
|
||||
@@ -121,8 +121,6 @@
|
||||
$(MAKE) install-basic
|
||||
|
||||
install-basic:
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(BINDIR)
|
||||
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(PERFDATA_SPOOL_DIR)
|
||||
$(INSTALL) -m 754 $(INSTALL_OPTS) @npcd_name@ $(DESTDIR)$(BINDIR)
|
||||
$(INSTALL) -m 754 $(INSTALL_OPTS) npcdmod.o $(DESTDIR)$(BINDIR)
|
||||
|
@ -3,28 +3,47 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PNP_RRDS=%%PNP_RRDS%%
|
||||
PNP_SPOOL=%%PNP_SPOOL%%
|
||||
PNP_STATE=%%PNP_STATE%%
|
||||
SPOOL_DIRS=%%SPOOL_DIRS%%
|
||||
NAGIOSUSER=%%NAGIOSUSER%%
|
||||
NAGIOSGROUP=%%NAGIOSGROUP%%
|
||||
|
||||
dirs () {
|
||||
local notempty
|
||||
local kept spool_dirs_rev
|
||||
|
||||
for i in "$PNP_RRDS" "$PNP_SPOOL" "$PNP_STATE"; do
|
||||
if ! [ -d "$i" ]; then
|
||||
IFS=%
|
||||
for i in $SPOOL_DIRS; do
|
||||
if [ -z "$spool_dirs_rev" ]; then
|
||||
spool_dirs_rev="$i"
|
||||
else
|
||||
spool_dirs_rev="$i$IFS$spool_dirs_rev"
|
||||
fi
|
||||
done
|
||||
for i in $spool_dirs_rev; do
|
||||
d="${i%%:*}"
|
||||
if ! [ -d "$d" ]; then
|
||||
continue
|
||||
fi
|
||||
if ! rmdir "$i" > /dev/null 2>&1; then
|
||||
notempty="$notempty $i"
|
||||
gom_std="${i#*:}"
|
||||
go_cur=`stat -f %Su:%Sg "$d"`
|
||||
m_cur=`stat -f %Op "$d" | sed -e's/^.*\(....\)$/\1/'`
|
||||
if [ "$gom_std" != "$go_cur:$m_cur" ]; then
|
||||
kept="$kept $d"
|
||||
continue
|
||||
fi
|
||||
if ! rmdir "$d" > /dev/null 2>&1; then
|
||||
kept="$kept $d"
|
||||
continue
|
||||
fi
|
||||
done
|
||||
|
||||
if [ -n "$notempty" ]; then
|
||||
if [ -n "$kept" ]; then
|
||||
echo
|
||||
echo "The following directories were not removed:"
|
||||
for i in $notempty; do
|
||||
cat << EOF
|
||||
The following directories were not removed, because they are either
|
||||
have non-default permissions or not empty:
|
||||
EOF
|
||||
IFS=" "
|
||||
for i in $kept; do
|
||||
echo " $i"
|
||||
done
|
||||
echo
|
||||
|
@ -3,17 +3,22 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PNP_RRDS=%%PNP_RRDS%%
|
||||
PNP_SPOOL=%%PNP_SPOOL%%
|
||||
SPOOL_DIRS=%%SPOOL_DIRS%%
|
||||
NAGIOSUSER=%%NAGIOSUSER%%
|
||||
NAGIOSGROUP=%%NAGIOSGROUP%%
|
||||
|
||||
# Create directories with mode and ownership specified in SPOOL_DIRS
|
||||
# as strings separated by '%' of format DIR:OWNER:GROUP:MODE
|
||||
dirs () {
|
||||
for i in "$PNP_RRDS" "$PNP_SPOOL"; do
|
||||
if ! [ -d "$i" ]; then
|
||||
mkdir -p "$i"
|
||||
chmod 750 "$i"
|
||||
chown "$NAGIOSUSER":"$NAGIOSGROUP" "$i"
|
||||
IFS=%
|
||||
for i in $SPOOL_DIRS; do
|
||||
d="${i%%:*}"
|
||||
if ! [ -d "$d" ]; then
|
||||
go=`echo "$i" | cut -f 2-3 -d :`
|
||||
m="${i##*:}"
|
||||
mkdir -p "$d"
|
||||
chown "$go" "$d"
|
||||
chmod "$m" "$d"
|
||||
fi
|
||||
done
|
||||
}
|
||||
@ -29,7 +34,7 @@ check_sanity () {
|
||||
fi
|
||||
}
|
||||
|
||||
if [ "x$2" = "xPOST-INSTALL" ]; then
|
||||
if [ "x$2" = "xPRE-INSTALL" ]; then
|
||||
check_sanity
|
||||
dirs
|
||||
fi
|
||||
|
@ -2,51 +2,39 @@
|
||||
|
||||
You just installed/upgraded PNP graphing tool for Nagios.
|
||||
|
||||
For tool configuration tasks read
|
||||
http://www.pnp4nagios.org/pnp/config
|
||||
|
||||
For Web-frontend configuration tasks read
|
||||
http://www.pnp4nagios.org/pnp/webfe
|
||||
You will need to read the documentation at
|
||||
http://docs.pnp4nagios.org/pnp-0.6/doc_complete
|
||||
both for new installations and upgrades from 0.4, since you will
|
||||
need to tweak your Nagios and PNP configuration according to the
|
||||
0.6.x recipes.
|
||||
|
||||
We recommend to start with the following restrictive Apache
|
||||
configuration for the PNP area:
|
||||
|
||||
{{{
|
||||
# PNP graphing tool
|
||||
Alias /nagios/pnp %%WWWDIR%%
|
||||
<Directory "%%WWWDIR%%/">
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
Deny from all
|
||||
DirectoryIndex index.php
|
||||
|
||||
AddHandler application/x-httpd-php .php
|
||||
</Directory>
|
||||
DirectoryIndex index.php
|
||||
|
||||
<Directory "%%WWWDIR%%/include/">
|
||||
Options None
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
<FilesMatch ".css$">
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
Deny from all
|
||||
</FilesMatch>
|
||||
RewriteEngine on
|
||||
RewriteBase /nagios/pnp/
|
||||
# Protect application and system files from being viewed
|
||||
RewriteRule ^(application|modules|system) - [F,L]
|
||||
# Allow any files or directories that exist to be displayed directly
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
# Rewrite all other URLs to index.php/URL
|
||||
RewriteRule .* index.php/$0 [PT,L]
|
||||
</Directory>
|
||||
}}}
|
||||
|
||||
<Directory "%%WWWDIR%%/include/js/">
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
Deny from all
|
||||
</Directory>
|
||||
<Directory "%%WWWDIR%%/lang/">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</Directory>
|
||||
<Directory "%%WWWDIR%%/templates/">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</Directory>
|
||||
<Directory "%%WWWDIR%%/templates.dist/">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</Directory>
|
||||
Create %%WWWDIR%%/install.ignore to disable sanity check
|
||||
and start using PNP.
|
||||
|
||||
Please, note that user who runs Apache processes should be able to
|
||||
read PNP RRD spool files from
|
||||
|
@ -1,131 +1,550 @@
|
||||
bin/npcd
|
||||
bin/npcdmod.o
|
||||
etc/pnp/check_commands/check_nwstat.cfg-sample
|
||||
etc/pnp/check_commands/check_nrpe.cfg-sample
|
||||
etc/pnp/check_commands/check_all_local_disks.cfg-sample
|
||||
etc/pnp/pages/web_traffic.cfg-sample
|
||||
etc/pnp/pnp4nagios_release
|
||||
etc/pnp/config.php-sample
|
||||
etc/pnp/background.pdf-sample
|
||||
etc/pnp/check_commands/check_nwstat.cfg-sample
|
||||
etc/pnp/pages/web_traffic.cfg-sample
|
||||
etc/pnp/process_perfdata.cfg-sample
|
||||
etc/pnp/rra.cfg-sample
|
||||
etc/pnp/misccommands.cfg-sample
|
||||
etc/pnp/nagios.cfg-sample
|
||||
etc/pnp/npcd.cfg-sample
|
||||
lib/npcdmod.o
|
||||
lib/kohana/system/controllers/captcha.php
|
||||
lib/kohana/system/controllers/template.php
|
||||
lib/kohana/system/i18n/de_DE/validation.php
|
||||
lib/kohana/system/i18n/de_DE/core.php
|
||||
lib/kohana/system/i18n/de_DE/pagination.php
|
||||
lib/kohana/system/i18n/de_DE/captcha.php
|
||||
lib/kohana/system/i18n/de_DE/encrypt.php
|
||||
lib/kohana/system/i18n/de_DE/orm.php
|
||||
lib/kohana/system/i18n/de_DE/image.php
|
||||
lib/kohana/system/i18n/de_DE/session.php
|
||||
lib/kohana/system/i18n/de_DE/database.php
|
||||
lib/kohana/system/i18n/de_DE/calendar.php
|
||||
lib/kohana/system/i18n/de_DE/profiler.php
|
||||
lib/kohana/system/i18n/de_DE/cache.php
|
||||
lib/kohana/system/i18n/de_DE/upload.php
|
||||
lib/kohana/system/i18n/de_DE/event.php
|
||||
lib/kohana/system/i18n/de_DE/errors.php
|
||||
lib/kohana/system/i18n/de_DE/swift.php
|
||||
lib/kohana/system/i18n/nl_NL/validation.php
|
||||
lib/kohana/system/i18n/nl_NL/core.php
|
||||
lib/kohana/system/i18n/nl_NL/pagination.php
|
||||
lib/kohana/system/i18n/nl_NL/captcha.php
|
||||
lib/kohana/system/i18n/nl_NL/encrypt.php
|
||||
lib/kohana/system/i18n/nl_NL/orm.php
|
||||
lib/kohana/system/i18n/nl_NL/image.php
|
||||
lib/kohana/system/i18n/nl_NL/session.php
|
||||
lib/kohana/system/i18n/nl_NL/database.php
|
||||
lib/kohana/system/i18n/nl_NL/calendar.php
|
||||
lib/kohana/system/i18n/nl_NL/profiler.php
|
||||
lib/kohana/system/i18n/nl_NL/cache.php
|
||||
lib/kohana/system/i18n/nl_NL/upload.php
|
||||
lib/kohana/system/i18n/nl_NL/event.php
|
||||
lib/kohana/system/i18n/nl_NL/errors.php
|
||||
lib/kohana/system/i18n/nl_NL/swift.php
|
||||
lib/kohana/system/i18n/es_ES/validation.php
|
||||
lib/kohana/system/i18n/es_ES/core.php
|
||||
lib/kohana/system/i18n/es_ES/pagination.php
|
||||
lib/kohana/system/i18n/es_ES/captcha.php
|
||||
lib/kohana/system/i18n/es_ES/encrypt.php
|
||||
lib/kohana/system/i18n/es_ES/orm.php
|
||||
lib/kohana/system/i18n/es_ES/image.php
|
||||
lib/kohana/system/i18n/es_ES/session.php
|
||||
lib/kohana/system/i18n/es_ES/database.php
|
||||
lib/kohana/system/i18n/es_ES/calendar.php
|
||||
lib/kohana/system/i18n/es_ES/profiler.php
|
||||
lib/kohana/system/i18n/es_ES/cache.php
|
||||
lib/kohana/system/i18n/es_ES/upload.php
|
||||
lib/kohana/system/i18n/es_ES/event.php
|
||||
lib/kohana/system/i18n/es_ES/errors.php
|
||||
lib/kohana/system/i18n/es_ES/swift.php
|
||||
lib/kohana/system/i18n/ru_RU/validation.php
|
||||
lib/kohana/system/i18n/ru_RU/core.php
|
||||
lib/kohana/system/i18n/ru_RU/pagination.php
|
||||
lib/kohana/system/i18n/ru_RU/captcha.php
|
||||
lib/kohana/system/i18n/ru_RU/encrypt.php
|
||||
lib/kohana/system/i18n/ru_RU/orm.php
|
||||
lib/kohana/system/i18n/ru_RU/image.php
|
||||
lib/kohana/system/i18n/ru_RU/session.php
|
||||
lib/kohana/system/i18n/ru_RU/database.php
|
||||
lib/kohana/system/i18n/ru_RU/calendar.php
|
||||
lib/kohana/system/i18n/ru_RU/profiler.php
|
||||
lib/kohana/system/i18n/ru_RU/cache.php
|
||||
lib/kohana/system/i18n/ru_RU/upload.php
|
||||
lib/kohana/system/i18n/ru_RU/event.php
|
||||
lib/kohana/system/i18n/ru_RU/errors.php
|
||||
lib/kohana/system/i18n/ru_RU/swift.php
|
||||
lib/kohana/system/i18n/en_US/validation.php
|
||||
lib/kohana/system/i18n/en_US/core.php
|
||||
lib/kohana/system/i18n/en_US/pagination.php
|
||||
lib/kohana/system/i18n/en_US/captcha.php
|
||||
lib/kohana/system/i18n/en_US/encrypt.php
|
||||
lib/kohana/system/i18n/en_US/orm.php
|
||||
lib/kohana/system/i18n/en_US/image.php
|
||||
lib/kohana/system/i18n/en_US/session.php
|
||||
lib/kohana/system/i18n/en_US/database.php
|
||||
lib/kohana/system/i18n/en_US/calendar.php
|
||||
lib/kohana/system/i18n/en_US/profiler.php
|
||||
lib/kohana/system/i18n/en_US/cache.php
|
||||
lib/kohana/system/i18n/en_US/upload.php
|
||||
lib/kohana/system/i18n/en_US/event.php
|
||||
lib/kohana/system/i18n/en_US/errors.php
|
||||
lib/kohana/system/i18n/en_US/swift.php
|
||||
lib/kohana/system/i18n/fr_FR/validation.php
|
||||
lib/kohana/system/i18n/fr_FR/core.php
|
||||
lib/kohana/system/i18n/fr_FR/pagination.php
|
||||
lib/kohana/system/i18n/fr_FR/captcha.php
|
||||
lib/kohana/system/i18n/fr_FR/encrypt.php
|
||||
lib/kohana/system/i18n/fr_FR/orm.php
|
||||
lib/kohana/system/i18n/fr_FR/image.php
|
||||
lib/kohana/system/i18n/fr_FR/session.php
|
||||
lib/kohana/system/i18n/fr_FR/database.php
|
||||
lib/kohana/system/i18n/fr_FR/calendar.php
|
||||
lib/kohana/system/i18n/fr_FR/profiler.php
|
||||
lib/kohana/system/i18n/fr_FR/cache.php
|
||||
lib/kohana/system/i18n/fr_FR/upload.php
|
||||
lib/kohana/system/i18n/fr_FR/event.php
|
||||
lib/kohana/system/i18n/fr_FR/errors.php
|
||||
lib/kohana/system/i18n/fr_FR/swift.php
|
||||
lib/kohana/system/i18n/it_IT/validation.php
|
||||
lib/kohana/system/i18n/it_IT/core.php
|
||||
lib/kohana/system/i18n/it_IT/pagination.php
|
||||
lib/kohana/system/i18n/it_IT/captcha.php
|
||||
lib/kohana/system/i18n/it_IT/encrypt.php
|
||||
lib/kohana/system/i18n/it_IT/orm.php
|
||||
lib/kohana/system/i18n/it_IT/image.php
|
||||
lib/kohana/system/i18n/it_IT/session.php
|
||||
lib/kohana/system/i18n/it_IT/database.php
|
||||
lib/kohana/system/i18n/it_IT/calendar.php
|
||||
lib/kohana/system/i18n/it_IT/profiler.php
|
||||
lib/kohana/system/i18n/it_IT/cache.php
|
||||
lib/kohana/system/i18n/it_IT/upload.php
|
||||
lib/kohana/system/i18n/it_IT/event.php
|
||||
lib/kohana/system/i18n/it_IT/errors.php
|
||||
lib/kohana/system/i18n/it_IT/swift.php
|
||||
lib/kohana/system/helpers/remote.php
|
||||
lib/kohana/system/helpers/url.php
|
||||
lib/kohana/system/helpers/feed.php
|
||||
lib/kohana/system/helpers/expires.php
|
||||
lib/kohana/system/helpers/text.php
|
||||
lib/kohana/system/helpers/email.php
|
||||
lib/kohana/system/helpers/download.php
|
||||
lib/kohana/system/helpers/format.php
|
||||
lib/kohana/system/helpers/form.php
|
||||
lib/kohana/system/helpers/arr.php
|
||||
lib/kohana/system/helpers/html.php
|
||||
lib/kohana/system/helpers/valid.php
|
||||
lib/kohana/system/helpers/date.php
|
||||
lib/kohana/system/helpers/file.php
|
||||
lib/kohana/system/helpers/request.php
|
||||
lib/kohana/system/helpers/upload.php
|
||||
lib/kohana/system/helpers/cookie.php
|
||||
lib/kohana/system/helpers/security.php
|
||||
lib/kohana/system/helpers/num.php
|
||||
lib/kohana/system/helpers/inflector.php
|
||||
lib/kohana/system/libraries/drivers/Database/Mssql.php
|
||||
lib/kohana/system/libraries/drivers/Database/Pdosqlite.php
|
||||
lib/kohana/system/libraries/drivers/Database/Mysqli.php
|
||||
lib/kohana/system/libraries/drivers/Database/Pgsql.php
|
||||
lib/kohana/system/libraries/drivers/Database/Mysql.php
|
||||
lib/kohana/system/libraries/drivers/Captcha/Alpha.php
|
||||
lib/kohana/system/libraries/drivers/Captcha/Math.php
|
||||
lib/kohana/system/libraries/drivers/Captcha/Word.php
|
||||
lib/kohana/system/libraries/drivers/Captcha/Riddle.php
|
||||
lib/kohana/system/libraries/drivers/Captcha/Basic.php
|
||||
lib/kohana/system/libraries/drivers/Captcha/Black.php
|
||||
lib/kohana/system/libraries/drivers/Cache/Eaccelerator.php
|
||||
lib/kohana/system/libraries/drivers/Cache/Apc.php
|
||||
lib/kohana/system/libraries/drivers/Cache/Memcache.php
|
||||
lib/kohana/system/libraries/drivers/Cache/Xcache.php
|
||||
lib/kohana/system/libraries/drivers/Cache/File.php
|
||||
lib/kohana/system/libraries/drivers/Cache/Sqlite.php
|
||||
lib/kohana/system/libraries/drivers/Image/GraphicsMagick.php
|
||||
lib/kohana/system/libraries/drivers/Image/GD.php
|
||||
lib/kohana/system/libraries/drivers/Image/ImageMagick.php
|
||||
lib/kohana/system/libraries/drivers/Session/Cookie.php
|
||||
lib/kohana/system/libraries/drivers/Session/Cache.php
|
||||
lib/kohana/system/libraries/drivers/Session/Database.php
|
||||
lib/kohana/system/libraries/drivers/Captcha.php
|
||||
lib/kohana/system/libraries/drivers/Cache.php
|
||||
lib/kohana/system/libraries/drivers/Session.php
|
||||
lib/kohana/system/libraries/drivers/Image.php
|
||||
lib/kohana/system/libraries/drivers/Database.php
|
||||
lib/kohana/system/libraries/Pagination.php
|
||||
lib/kohana/system/libraries/ORM_Tree.php
|
||||
lib/kohana/system/libraries/Encrypt.php
|
||||
lib/kohana/system/libraries/Calendar.php
|
||||
lib/kohana/system/libraries/Database_Expression.php
|
||||
lib/kohana/system/libraries/Event_Observer.php
|
||||
lib/kohana/system/libraries/Event_Subject.php
|
||||
lib/kohana/system/libraries/Captcha.php
|
||||
lib/kohana/system/libraries/Cache.php
|
||||
lib/kohana/system/libraries/Session.php
|
||||
lib/kohana/system/libraries/Image.php
|
||||
lib/kohana/system/libraries/Validation.php
|
||||
lib/kohana/system/libraries/ORM_Versioned.php
|
||||
lib/kohana/system/libraries/Controller.php
|
||||
lib/kohana/system/libraries/Profiler.php
|
||||
lib/kohana/system/libraries/Model.php
|
||||
lib/kohana/system/libraries/View.php
|
||||
lib/kohana/system/libraries/Router.php
|
||||
lib/kohana/system/libraries/ORM_Iterator.php
|
||||
lib/kohana/system/libraries/URI.php
|
||||
lib/kohana/system/libraries/Profiler_Table.php
|
||||
lib/kohana/system/libraries/ORM.php
|
||||
lib/kohana/system/libraries/Calendar_Event.php
|
||||
lib/kohana/system/libraries/Tagcloud.php
|
||||
lib/kohana/system/libraries/Input.php
|
||||
lib/kohana/system/libraries/Database.php
|
||||
lib/kohana/system/config/locale.php
|
||||
lib/kohana/system/config/routes.php
|
||||
lib/kohana/system/config/pagination.php
|
||||
lib/kohana/system/config/sql_types.php
|
||||
lib/kohana/system/config/captcha.php
|
||||
lib/kohana/system/config/email.php
|
||||
lib/kohana/system/config/image.php
|
||||
lib/kohana/system/config/cache_sqlite.php
|
||||
lib/kohana/system/config/cache_memcache.php
|
||||
lib/kohana/system/config/session.php
|
||||
lib/kohana/system/config/database.php
|
||||
lib/kohana/system/config/credit_cards.php
|
||||
lib/kohana/system/config/http.php
|
||||
lib/kohana/system/config/mimes.php
|
||||
lib/kohana/system/config/profiler.php
|
||||
lib/kohana/system/config/view.php
|
||||
lib/kohana/system/config/cache.php
|
||||
lib/kohana/system/config/encryption.php
|
||||
lib/kohana/system/config/upload.php
|
||||
lib/kohana/system/config/cookie.php
|
||||
lib/kohana/system/config/user_agents.php
|
||||
lib/kohana/system/config/inflector.php
|
||||
lib/kohana/system/config/cache_xcache.php
|
||||
lib/kohana/system/core/utf8/transliterate_to_ascii.php
|
||||
lib/kohana/system/core/utf8/ucfirst.php
|
||||
lib/kohana/system/core/utf8/ord.php
|
||||
lib/kohana/system/core/utf8/strrpos.php
|
||||
lib/kohana/system/core/utf8/strtolower.php
|
||||
lib/kohana/system/core/utf8/substr.php
|
||||
lib/kohana/system/core/utf8/str_pad.php
|
||||
lib/kohana/system/core/utf8/strcspn.php
|
||||
lib/kohana/system/core/utf8/trim.php
|
||||
lib/kohana/system/core/utf8/rtrim.php
|
||||
lib/kohana/system/core/utf8/strcasecmp.php
|
||||
lib/kohana/system/core/utf8/strtoupper.php
|
||||
lib/kohana/system/core/utf8/str_split.php
|
||||
lib/kohana/system/core/utf8/strpos.php
|
||||
lib/kohana/system/core/utf8/stristr.php
|
||||
lib/kohana/system/core/utf8/ucwords.php
|
||||
lib/kohana/system/core/utf8/str_ireplace.php
|
||||
lib/kohana/system/core/utf8/strlen.php
|
||||
lib/kohana/system/core/utf8/to_unicode.php
|
||||
lib/kohana/system/core/utf8/substr_replace.php
|
||||
lib/kohana/system/core/utf8/from_unicode.php
|
||||
lib/kohana/system/core/utf8/strrev.php
|
||||
lib/kohana/system/core/utf8/strspn.php
|
||||
lib/kohana/system/core/utf8/ltrim.php
|
||||
lib/kohana/system/core/Event.php
|
||||
lib/kohana/system/core/Benchmark.php
|
||||
lib/kohana/system/core/Bootstrap.php
|
||||
lib/kohana/system/core/Kohana.php
|
||||
lib/kohana/system/core/utf8.php
|
||||
lib/kohana/system/views/kohana/template.php
|
||||
lib/kohana/system/views/pagination/digg.php
|
||||
lib/kohana/system/views/pagination/punbb.php
|
||||
lib/kohana/system/views/pagination/extended.php
|
||||
lib/kohana/system/views/pagination/classic.php
|
||||
lib/kohana/system/views/kohana_profiler_table.php
|
||||
lib/kohana/system/views/kohana_error_page.php
|
||||
lib/kohana/system/views/kohana_calendar.php
|
||||
lib/kohana/system/views/kohana_profiler_table.css
|
||||
lib/kohana/system/views/kohana_profiler.php
|
||||
lib/kohana/system/views/kohana_error_disabled.php
|
||||
lib/kohana/system/views/kohana_errors.css
|
||||
lib/kohana/system/fonts/LICENSE
|
||||
lib/kohana/system/fonts/DejaVuSerif.ttf
|
||||
libexec/process_perfdata.pl
|
||||
libexec/check_pnp_rrds.pl
|
||||
%%WWWDIR%%/images/ack.png
|
||||
%%WWWDIR%%/images/action.gif
|
||||
%%WWWDIR%%/images/calendar.png
|
||||
%%WWWDIR%%/images/critical.png
|
||||
%%WWWDIR%%/images/eps.png
|
||||
%%WWWDIR%%/images/graph.gif
|
||||
%%WWWDIR%%/images/int.gif
|
||||
%%WWWDIR%%/images/int2.gif
|
||||
%%WWWDIR%%/images/link.png
|
||||
%%WWWDIR%%/images/noack.png
|
||||
%%WWWDIR%%/images/notify.gif
|
||||
%%WWWDIR%%/images/ok.png
|
||||
%%WWWDIR%%/images/pages.png
|
||||
%%WWWDIR%%/images/pdf.png
|
||||
%%WWWDIR%%/images/pnp.png
|
||||
%%WWWDIR%%/images/recovery.png
|
||||
%%WWWDIR%%/images/rrdtool.png
|
||||
%%WWWDIR%%/images/svg.png
|
||||
%%WWWDIR%%/images/trends.gif
|
||||
%%WWWDIR%%/images/warning.png
|
||||
%%WWWDIR%%/images/xml.png
|
||||
%%WWWDIR%%/images/zoom.png
|
||||
%%WWWDIR%%/include/tpl_function.inc.php
|
||||
%%WWWDIR%%/include/font/makefont/cp1250.map
|
||||
%%WWWDIR%%/include/font/makefont/cp1251.map
|
||||
%%WWWDIR%%/include/font/makefont/cp1252.map
|
||||
%%WWWDIR%%/include/font/makefont/cp1253.map
|
||||
%%WWWDIR%%/include/font/makefont/cp1254.map
|
||||
%%WWWDIR%%/include/font/makefont/cp1255.map
|
||||
%%WWWDIR%%/include/font/makefont/cp1257.map
|
||||
%%WWWDIR%%/include/font/makefont/cp1258.map
|
||||
%%WWWDIR%%/include/font/makefont/cp874.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-1.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-11.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-15.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-16.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-2.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-4.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-5.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-7.map
|
||||
%%WWWDIR%%/include/font/makefont/iso-8859-9.map
|
||||
%%WWWDIR%%/include/font/makefont/koi8-r.map
|
||||
%%WWWDIR%%/include/font/makefont/koi8-u.map
|
||||
%%WWWDIR%%/include/font/makefont/makefont.php
|
||||
%%WWWDIR%%/include/font/courier.php
|
||||
%%WWWDIR%%/include/font/helvetica.php
|
||||
%%WWWDIR%%/include/font/helveticab.php
|
||||
%%WWWDIR%%/include/font/helveticabi.php
|
||||
%%WWWDIR%%/include/font/helveticai.php
|
||||
%%WWWDIR%%/include/font/symbol.php
|
||||
%%WWWDIR%%/include/font/times.php
|
||||
%%WWWDIR%%/include/font/timesb.php
|
||||
%%WWWDIR%%/include/font/timesbi.php
|
||||
%%WWWDIR%%/include/font/timesi.php
|
||||
%%WWWDIR%%/include/font/zapfdingbats.php
|
||||
%%WWWDIR%%/include/js/builder.js
|
||||
%%WWWDIR%%/include/js/calendar-blue.css
|
||||
%%WWWDIR%%/include/js/calendar-de.js
|
||||
%%WWWDIR%%/include/js/calendar-en.js
|
||||
%%WWWDIR%%/include/js/calendar-setup.js
|
||||
%%WWWDIR%%/include/js/calendar.js
|
||||
%%WWWDIR%%/include/js/controls.js
|
||||
%%WWWDIR%%/include/js/dragdrop.js
|
||||
%%WWWDIR%%/include/js/effects.js
|
||||
%%WWWDIR%%/include/js/menuarrow.gif
|
||||
%%WWWDIR%%/include/js/overlib_mini.js
|
||||
%%WWWDIR%%/include/js/prototype.js
|
||||
%%WWWDIR%%/include/js/scriptaculous.js
|
||||
%%WWWDIR%%/include/js/slider.js
|
||||
%%WWWDIR%%/include/js/sound.js
|
||||
%%WWWDIR%%/include/js/unittest.js
|
||||
%%WWWDIR%%/include/js/zoom.js
|
||||
%%WWWDIR%%/include/debug.php
|
||||
%%WWWDIR%%/include/fpdf.php
|
||||
%%WWWDIR%%/include/fpdf_tpl.php
|
||||
%%WWWDIR%%/include/fpdi.php
|
||||
%%WWWDIR%%/include/fpdi_pdf_parser.php
|
||||
%%WWWDIR%%/include/function.inc.php
|
||||
%%WWWDIR%%/include/pdf_context.php
|
||||
%%WWWDIR%%/include/pdf_parser.php
|
||||
%%WWWDIR%%/include/site.php
|
||||
%%WWWDIR%%/include/style.css
|
||||
%%WWWDIR%%/include/wrapper_functions.php
|
||||
%%WWWDIR%%/lang/lang_de.php
|
||||
%%WWWDIR%%/lang/lang_en.php
|
||||
%%WWWDIR%%/lang/lang_fr.php
|
||||
%%WWWDIR%%/lang/lang_nl.php
|
||||
%%WWWDIR%%/lang/lang_se.php
|
||||
libexec/verify_pnp_config.pl
|
||||
libexec/rrd_convert.pl
|
||||
%%WWWDIR%%/documents/_media/bulk-npcd.png
|
||||
%%WWWDIR%%/documents/_media/bulk-npcdmod.png
|
||||
%%WWWDIR%%/documents/_media/bulk.png
|
||||
%%WWWDIR%%/documents/_media/nagiospowered-72x72.png
|
||||
%%WWWDIR%%/documents/_media/pnp-preview-05-08-2009.png
|
||||
%%WWWDIR%%/documents/_media/popup.png
|
||||
%%WWWDIR%%/documents/_media/srv_info.png
|
||||
%%WWWDIR%%/documents/_media/synchronous.png
|
||||
%%WWWDIR%%/documents/en_US/about.html
|
||||
%%WWWDIR%%/documents/en_US/advanced.html
|
||||
%%WWWDIR%%/documents/en_US/config.html
|
||||
%%WWWDIR%%/documents/en_US/doc_complete.html
|
||||
%%WWWDIR%%/documents/en_US/dwnld.html
|
||||
%%WWWDIR%%/documents/en_US/install.html
|
||||
%%WWWDIR%%/documents/en_US/modes.html
|
||||
%%WWWDIR%%/documents/en_US/new-features.html
|
||||
%%WWWDIR%%/documents/en_US/npcd.html
|
||||
%%WWWDIR%%/documents/en_US/pages.html
|
||||
%%WWWDIR%%/documents/en_US/perfdata_format.html
|
||||
%%WWWDIR%%/documents/en_US/rrd_convert.html
|
||||
%%WWWDIR%%/documents/en_US/rrdcached.html
|
||||
%%WWWDIR%%/documents/en_US/start.html
|
||||
%%WWWDIR%%/documents/en_US/timeranges.html
|
||||
%%WWWDIR%%/documents/en_US/tpl.html
|
||||
%%WWWDIR%%/documents/en_US/tpl_custom.html
|
||||
%%WWWDIR%%/documents/en_US/tpl_helper.html
|
||||
%%WWWDIR%%/documents/en_US/tpl_special.html
|
||||
%%WWWDIR%%/documents/en_US/upgrade.html
|
||||
%%WWWDIR%%/documents/en_US/verify.html
|
||||
%%WWWDIR%%/documents/en_US/verify_pnp_config.html
|
||||
%%WWWDIR%%/documents/en_US/webfe.html
|
||||
%%WWWDIR%%/documents/en_US/webfe_cfg.html
|
||||
%%WWWDIR%%/documents/en_US/wrapper.html
|
||||
%%WWWDIR%%/documents/en_US/xport.html
|
||||
%%WWWDIR%%/documents/de_DE/about.html
|
||||
%%WWWDIR%%/documents/de_DE/advanced.html
|
||||
%%WWWDIR%%/documents/de_DE/config.html
|
||||
%%WWWDIR%%/documents/de_DE/doc_complete.html
|
||||
%%WWWDIR%%/documents/de_DE/dwnld.html
|
||||
%%WWWDIR%%/documents/de_DE/install.html
|
||||
%%WWWDIR%%/documents/de_DE/modes.html
|
||||
%%WWWDIR%%/documents/de_DE/new-features.html
|
||||
%%WWWDIR%%/documents/de_DE/npcd.html
|
||||
%%WWWDIR%%/documents/de_DE/pages.html
|
||||
%%WWWDIR%%/documents/de_DE/perfdata_format.html
|
||||
%%WWWDIR%%/documents/de_DE/rrd_convert.html
|
||||
%%WWWDIR%%/documents/de_DE/rrdcached.html
|
||||
%%WWWDIR%%/documents/de_DE/start.html
|
||||
%%WWWDIR%%/documents/de_DE/timeranges.html
|
||||
%%WWWDIR%%/documents/de_DE/tpl.html
|
||||
%%WWWDIR%%/documents/de_DE/tpl_custom.html
|
||||
%%WWWDIR%%/documents/de_DE/tpl_helper.html
|
||||
%%WWWDIR%%/documents/de_DE/tpl_special.html
|
||||
%%WWWDIR%%/documents/de_DE/upgrade.html
|
||||
%%WWWDIR%%/documents/de_DE/verify.html
|
||||
%%WWWDIR%%/documents/de_DE/verify_pnp_config.html
|
||||
%%WWWDIR%%/documents/de_DE/webfe.html
|
||||
%%WWWDIR%%/documents/de_DE/webfe_cfg.html
|
||||
%%WWWDIR%%/documents/de_DE/wrapper.html
|
||||
%%WWWDIR%%/documents/de_DE/xport.html
|
||||
%%WWWDIR%%/application/controllers/ajax.php
|
||||
%%WWWDIR%%/application/controllers/debug.php
|
||||
%%WWWDIR%%/application/controllers/docs.php
|
||||
%%WWWDIR%%/application/controllers/graph.php
|
||||
%%WWWDIR%%/application/controllers/image.php
|
||||
%%WWWDIR%%/application/controllers/json.php
|
||||
%%WWWDIR%%/application/controllers/page.php
|
||||
%%WWWDIR%%/application/controllers/pdf.php
|
||||
%%WWWDIR%%/application/controllers/popup.php
|
||||
%%WWWDIR%%/application/controllers/special.php
|
||||
%%WWWDIR%%/application/controllers/start.php
|
||||
%%WWWDIR%%/application/controllers/system.php
|
||||
%%WWWDIR%%/application/controllers/xml.php
|
||||
%%WWWDIR%%/application/controllers/xport.php
|
||||
%%WWWDIR%%/application/controllers/zoom.php
|
||||
%%WWWDIR%%/application/config/config.php
|
||||
%%WWWDIR%%/application/config/locale.php
|
||||
%%WWWDIR%%/application/config/routes.php
|
||||
%%WWWDIR%%/application/config/session.php
|
||||
%%WWWDIR%%/application/helpers/nagios.php
|
||||
%%WWWDIR%%/application/helpers/pnp.php
|
||||
%%WWWDIR%%/application/helpers/rrd.php
|
||||
%%WWWDIR%%/application/i18n/de_DE/common.php
|
||||
%%WWWDIR%%/application/i18n/de_DE/error.php
|
||||
%%WWWDIR%%/application/i18n/en_US/common.php
|
||||
%%WWWDIR%%/application/i18n/en_US/error.php
|
||||
%%WWWDIR%%/application/i18n/es_ES/common.php
|
||||
%%WWWDIR%%/application/i18n/es_ES/error.php
|
||||
%%WWWDIR%%/application/i18n/ru_RU/common.php
|
||||
%%WWWDIR%%/application/i18n/ru_RU/error.php
|
||||
%%WWWDIR%%/application/i18n/fr_FR/common.php
|
||||
%%WWWDIR%%/application/i18n/fr_FR/error.php
|
||||
%%WWWDIR%%/application/models/config.php
|
||||
%%WWWDIR%%/application/models/data.php
|
||||
%%WWWDIR%%/application/models/rrdtool.php
|
||||
%%WWWDIR%%/application/views/basket_box.php
|
||||
%%WWWDIR%%/application/views/debug.php
|
||||
%%WWWDIR%%/application/views/docs.php
|
||||
%%WWWDIR%%/application/views/docs_box.php
|
||||
%%WWWDIR%%/application/views/graph.php
|
||||
%%WWWDIR%%/application/views/graph_content.php
|
||||
%%WWWDIR%%/application/views/graph_content_special.php
|
||||
%%WWWDIR%%/application/views/header.php
|
||||
%%WWWDIR%%/application/views/host_box.php
|
||||
%%WWWDIR%%/application/views/icon_box.php
|
||||
%%WWWDIR%%/application/views/kohana_error_page.php
|
||||
%%WWWDIR%%/application/views/logo_box.php
|
||||
%%WWWDIR%%/application/views/multisite_box.php
|
||||
%%WWWDIR%%/application/views/page.php
|
||||
%%WWWDIR%%/application/views/pages_box.php
|
||||
%%WWWDIR%%/application/views/popup.php
|
||||
%%WWWDIR%%/application/views/search_box.php
|
||||
%%WWWDIR%%/application/views/service_box.php
|
||||
%%WWWDIR%%/application/views/special_templates_box.php
|
||||
%%WWWDIR%%/application/views/status_box.php
|
||||
%%WWWDIR%%/application/views/template.php
|
||||
%%WWWDIR%%/application/views/timerange_box.php
|
||||
%%WWWDIR%%/application/views/timerange_select.php
|
||||
%%WWWDIR%%/application/views/widget_graph.sample.php
|
||||
%%WWWDIR%%/application/views/widget_menu.sample.php
|
||||
%%WWWDIR%%/application/views/zoom.php
|
||||
%%WWWDIR%%/application/views/zoom_header.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/filters/FilterASCII85.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/filters/FilterASCII85_FPDI.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/filters/FilterLZW.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/filters/FilterLZW_FPDI.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/courier.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/helvetica.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/helveticab.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/helveticabi.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/helveticai.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/symbol.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/times.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/timesb.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/timesbi.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/timesi.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/font/zapfdingbats.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/fpdf.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/fpdf_tpl.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/fpdi.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/fpdi2tcpdf_bridge.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/fpdi_pdf_parser.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/pdf_context.php
|
||||
%%WWWDIR%%/application/vendor/fpdf/pdf_parser.php
|
||||
%%WWWDIR%%/media/js/jquery-min.js
|
||||
%%WWWDIR%%/media/js/jquery-ui.min.js
|
||||
%%WWWDIR%%/media/js/jquery.cluetip.js
|
||||
%%WWWDIR%%/media/js/zoom.js
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-anim_basic_16x16.gif
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-icons_222222_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-icons_228ef1_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/images/ui-icons_ffffff_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-lightness/jquery-ui.css
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-anim_basic_16x16.gif
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-bg_flat_75_ffffff_40x100.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-bg_glass_65_ffffff_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-bg_glass_75_dadada_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-icons_222222_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-icons_2e83ff_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-icons_454545_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-icons_888888_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/images/ui-icons_cd0a0a_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-smoothness/jquery-ui.css
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-anim_basic_16x16.gif
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-bg_flat_55_fbec88_40x100.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-bg_glass_85_dfeffc_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-bg_glass_95_fef1ec_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-icons_217bc0_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-icons_2e83ff_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-icons_469bdd_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-icons_6da8d5_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-icons_cd0a0a_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-icons_d8e7f3_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/images/ui-icons_f9bd01_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-redmond/jquery-ui.css
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/contentframe_background.jpg
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-bg_flat_0_aaaaaa_40x100.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-bg_flat_75_709aa5_40x100.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-bg_glass_55_fbf9ee_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-bg_glass_65_709aa5_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-bg_glass_75_709aa5_1x400.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-bg_highlight-soft_75_8eaeb8_1x100.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-bg_inset-soft_95_fef1ec_1x100.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-icons_222222_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-icons_2e83ff_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-icons_454545_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-icons_888888_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/images/ui-icons_cd0a0a_256x240.png
|
||||
%%WWWDIR%%/media/css/ui-multisite/jquery-ui.css
|
||||
%%WWWDIR%%/media/css/autocomplete.css
|
||||
%%WWWDIR%%/media/css/common.css
|
||||
%%WWWDIR%%/media/css/shadow.png
|
||||
%%WWWDIR%%/media/images/add.png
|
||||
%%WWWDIR%%/media/images/calendar.gif
|
||||
%%WWWDIR%%/media/images/calendar.png
|
||||
%%WWWDIR%%/media/images/de_DE.png
|
||||
%%WWWDIR%%/media/images/docs.png
|
||||
%%WWWDIR%%/media/images/en_US.png
|
||||
%%WWWDIR%%/media/images/favicon.ico
|
||||
%%WWWDIR%%/media/images/graph.png
|
||||
%%WWWDIR%%/media/images/home.png
|
||||
%%WWWDIR%%/media/images/int.gif
|
||||
%%WWWDIR%%/media/images/int2.gif
|
||||
%%WWWDIR%%/media/images/loader.gif
|
||||
%%WWWDIR%%/media/images/notify.gif
|
||||
%%WWWDIR%%/media/images/pages.png
|
||||
%%WWWDIR%%/media/images/pdf.png
|
||||
%%WWWDIR%%/media/images/pnp.png
|
||||
%%WWWDIR%%/media/images/remove.png
|
||||
%%WWWDIR%%/media/images/rrdtool.png
|
||||
%%WWWDIR%%/media/images/special.png
|
||||
%%WWWDIR%%/media/images/stats.png
|
||||
%%WWWDIR%%/media/images/trends.gif
|
||||
%%WWWDIR%%/media/images/xml.png
|
||||
%%WWWDIR%%/media/images/zoom.png
|
||||
%%WWWDIR%%/templates.dist/check-host-alive.php
|
||||
%%WWWDIR%%/templates.dist/check_dell_bladechassis.php
|
||||
%%WWWDIR%%/templates.dist/check_disk.php
|
||||
%%WWWDIR%%/templates.dist/check_dns.php
|
||||
%%WWWDIR%%/templates.dist/check_esx3.php
|
||||
%%WWWDIR%%/templates.dist/check_fping.php
|
||||
%%WWWDIR%%/templates.dist/check_hp_bladechassis.php
|
||||
%%WWWDIR%%/templates.dist/check_hpasm.php
|
||||
%%WWWDIR%%/templates.dist/check_http.php
|
||||
%%WWWDIR%%/templates.dist/check_http_url.php
|
||||
%%WWWDIR%%/templates.dist/check_icmp.php
|
||||
%%WWWDIR%%/templates.dist/check_iftraffic_counter.php
|
||||
%%WWWDIR%%/templates.dist/check_iftraffic_pct.php
|
||||
%%WWWDIR%%/templates.dist/check_load.php
|
||||
%%WWWDIR%%/templates.dist/check_local_disk.php
|
||||
%%WWWDIR%%/templates.dist/check_local_load.php
|
||||
%%WWWDIR%%/templates.dist/check_messpc_temp.php
|
||||
%%WWWDIR%%/templates.dist/check_multi.php
|
||||
%%WWWDIR%%/templates.dist/check_multi_nagiostats.php
|
||||
%%WWWDIR%%/templates.dist/check_mysql_health.php
|
||||
%%WWWDIR%%/templates.dist/check_nt_cpu.php
|
||||
%%WWWDIR%%/templates.dist/check_nt_disk.php
|
||||
%%WWWDIR%%/templates.dist/check_nt_mem.php
|
||||
%%WWWDIR%%/templates.dist/check_ntp_time.php
|
||||
%%WWWDIR%%/templates.dist/check_nwstat_CONNS.php
|
||||
%%WWWDIR%%/templates.dist/check_nwstat_LOAD.php
|
||||
%%WWWDIR%%/templates.dist/check_nwstat_LOAD1.php
|
||||
%%WWWDIR%%/templates.dist/check_ping.php
|
||||
%%WWWDIR%%/templates.dist/check_nwstat_LOAD15.php
|
||||
%%WWWDIR%%/templates.dist/check_nwstat_LOAD5.php
|
||||
%%WWWDIR%%/templates.dist/check_nwstat_ofiles.php
|
||||
%%WWWDIR%%/templates.dist/check_openmanage.php
|
||||
%%WWWDIR%%/templates.dist/check_oracle_connection-time.php
|
||||
%%WWWDIR%%/templates.dist/check_oracle_health.php
|
||||
%%WWWDIR%%/templates.dist/check_ping.php
|
||||
%%WWWDIR%%/templates.dist/check_oracle_health_connection-time.php
|
||||
%%WWWDIR%%/templates.dist/check_oracle_health_pga-in-memory-sort-ratio.php
|
||||
%%WWWDIR%%/templates.dist/check_oracle_health_redo-io-traffic.php
|
||||
%%WWWDIR%%/templates.dist/check_oracle_health_switch-interval.php
|
||||
%%WWWDIR%%/templates.dist/check_oracle_health_tablespace-usage.php
|
||||
%%WWWDIR%%/templates.dist/check_ping_tick.php
|
||||
%%WWWDIR%%/templates.dist/check_pnp_rrds.php
|
||||
%%WWWDIR%%/templates.dist/check_smtp.php
|
||||
%%WWWDIR%%/templates.dist/check_snmp_int-bits.php
|
||||
@ -134,21 +553,81 @@ libexec/check_pnp_rrds.pl
|
||||
%%WWWDIR%%/templates.dist/check_tcp.php
|
||||
%%WWWDIR%%/templates.dist/check_users.php
|
||||
%%WWWDIR%%/templates.dist/default.php
|
||||
%%WWWDIR%%/templates.dist/integer.php
|
||||
%%WWWDIR%%/templates.dist/nagiostats.php
|
||||
%%WWWDIR%%/templates.dist/pnp-runtime.php
|
||||
%%WWWDIR%%/templates.dist/response.php
|
||||
%%WWWDIR%%/templates.special/loop.php
|
||||
%%WWWDIR%%/ajax.php
|
||||
%%WWWDIR%%/templates.special/README
|
||||
%%WWWDIR%%/templates.special/advanced_loop.php-sample
|
||||
%%WWWDIR%%/templates.special/loop.php-sample
|
||||
%%WWWDIR%%/templates.special/static.php-sample
|
||||
%%WWWDIR%%/index.php
|
||||
%%WWWDIR%%/zoom.php
|
||||
@dirrmtry %%WWWDIR%%/templates.dist
|
||||
@dirrmtry %%WWWDIR%%/templates.special
|
||||
%%WWWDIR%%/install.php
|
||||
@dirrm %%WWWDIR%%/media/js
|
||||
@dirrm %%WWWDIR%%/media/images
|
||||
@dirrm %%WWWDIR%%/media/css/ui-smoothness/images
|
||||
@dirrm %%WWWDIR%%/media/css/ui-smoothness
|
||||
@dirrm %%WWWDIR%%/media/css/ui-redmond/images
|
||||
@dirrm %%WWWDIR%%/media/css/ui-redmond
|
||||
@dirrm %%WWWDIR%%/media/css/ui-multisite/images
|
||||
@dirrm %%WWWDIR%%/media/css/ui-multisite
|
||||
@dirrm %%WWWDIR%%/media/css/ui-lightness/images
|
||||
@dirrm %%WWWDIR%%/media/css/ui-lightness
|
||||
@dirrm %%WWWDIR%%/media/css
|
||||
@dirrm %%WWWDIR%%/media
|
||||
@dirrm %%WWWDIR%%/documents/en_US
|
||||
@dirrm %%WWWDIR%%/documents/de_DE
|
||||
@dirrm %%WWWDIR%%/documents/_media
|
||||
@dirrm %%WWWDIR%%/documents
|
||||
@dirrm %%WWWDIR%%/application/views
|
||||
@dirrm %%WWWDIR%%/application/vendor/fpdf/font
|
||||
@dirrm %%WWWDIR%%/application/vendor/fpdf/filters
|
||||
@dirrm %%WWWDIR%%/application/vendor/fpdf
|
||||
@dirrm %%WWWDIR%%/application/vendor
|
||||
@dirrm %%WWWDIR%%/application/models
|
||||
@dirrm %%WWWDIR%%/application/libraries
|
||||
@dirrm %%WWWDIR%%/application/i18n/ru_RU
|
||||
@dirrm %%WWWDIR%%/application/i18n/fr_FR
|
||||
@dirrm %%WWWDIR%%/application/i18n/es_ES
|
||||
@dirrm %%WWWDIR%%/application/i18n/en_US
|
||||
@dirrm %%WWWDIR%%/application/i18n/de_DE
|
||||
@dirrm %%WWWDIR%%/application/i18n
|
||||
@dirrm %%WWWDIR%%/application/hooks
|
||||
@dirrm %%WWWDIR%%/application/helpers
|
||||
@dirrm %%WWWDIR%%/application/controllers
|
||||
@dirrm %%WWWDIR%%/application/config
|
||||
@dirrm %%WWWDIR%%/application/cache
|
||||
@dirrm %%WWWDIR%%/application
|
||||
@dirrmtry %%WWWDIR%%/templates
|
||||
@dirrmtry %%WWWDIR%%/lang
|
||||
@dirrmtry %%WWWDIR%%/include/js
|
||||
@dirrmtry %%WWWDIR%%/include/font/makefont
|
||||
@dirrmtry %%WWWDIR%%/include/font
|
||||
@dirrmtry %%WWWDIR%%/include
|
||||
@dirrmtry %%WWWDIR%%/images
|
||||
@dirrm %%WWWDIR%%/templates.dist
|
||||
@dirrm %%WWWDIR%%/templates.special
|
||||
@dirrmtry %%WWWDIR%%
|
||||
@dirrmtry etc/pnp/pages
|
||||
@dirrm lib/kohana/system/views/pagination
|
||||
@dirrm lib/kohana/system/views/kohana
|
||||
@dirrm lib/kohana/system/views
|
||||
@dirrm lib/kohana/system/libraries/drivers/Session
|
||||
@dirrm lib/kohana/system/libraries/drivers/Image
|
||||
@dirrm lib/kohana/system/libraries/drivers/Database
|
||||
@dirrm lib/kohana/system/libraries/drivers/Captcha
|
||||
@dirrm lib/kohana/system/libraries/drivers/Cache
|
||||
@dirrm lib/kohana/system/libraries/drivers
|
||||
@dirrm lib/kohana/system/libraries
|
||||
@dirrm lib/kohana/system/i18n/ru_RU
|
||||
@dirrm lib/kohana/system/i18n/nl_NL
|
||||
@dirrm lib/kohana/system/i18n/it_IT
|
||||
@dirrm lib/kohana/system/i18n/fr_FR
|
||||
@dirrm lib/kohana/system/i18n/es_ES
|
||||
@dirrm lib/kohana/system/i18n/en_US
|
||||
@dirrm lib/kohana/system/i18n/de_DE
|
||||
@dirrm lib/kohana/system/i18n
|
||||
@dirrm lib/kohana/system/helpers
|
||||
@dirrm lib/kohana/system/fonts
|
||||
@dirrm lib/kohana/system/core/utf8
|
||||
@dirrm lib/kohana/system/core
|
||||
@dirrm lib/kohana/system/controllers
|
||||
@dirrm lib/kohana/system/config
|
||||
@dirrm lib/kohana/system
|
||||
@dirrm lib/kohana
|
||||
@dirrmtry etc/pnp/check_commands
|
||||
@dirrmtry etc/pnp/pages
|
||||
@dirrmtry etc/pnp
|
||||
|
Loading…
Reference in New Issue
Block a user