mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
Hinzugefuegt:
* Nagios 2.5 mit Plugins Programmupdate: * GD 2.0.20 --> 2.0.33 git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@260 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
------------------------------------------------------------------------
|
||||
r259 | ms | 2006-08-28 16:18:38 +0200 (Mon, 28 Aug 2006) | 5 lines
|
||||
|
||||
Hinzugefuegt:
|
||||
* Load Average Graphen
|
||||
Geaendert:
|
||||
* MC - Tasten F1 bis F5 sollten wieder gehen.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r258 | ms | 2006-08-26 15:20:12 +0200 (Sat, 26 Aug 2006) | 6 lines
|
||||
|
||||
|
||||
175
lfs/gd
175
lfs/gd
@@ -1,89 +1,86 @@
|
||||
###############################################################################
|
||||
# This file is part of the IPCop Firewall. #
|
||||
# #
|
||||
# IPCop is free software; you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation; either version 2 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPCop is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with IPCop; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Makefiles are based on LFSMake, which is #
|
||||
# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
|
||||
# #
|
||||
# Modifications by: #
|
||||
# ??-12-2003 Mark Wormgoor < mark@wormgoor.com> #
|
||||
# - Modified Makefile for IPCop build #
|
||||
# #
|
||||
# $Id: gd,v 1.5.2.4 2005/03/04 19:26:50 gespinasse Exp $
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2.0.20
|
||||
|
||||
THISAPP = gd-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = http://www.boutell.com/gd/http
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 3e513bf438a8d797b508a4fbf52c9bd1
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls
|
||||
cd $(DIR_APP) && sed -i \
|
||||
-e 's%^#include "jpeglib.h".*$$%%' \
|
||||
-e 's%^#include "jerror.h".*$$%%' gd_jpeg.c
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
|
||||
###############################################################################
|
||||
# This file is part of the IPCop Firewall. #
|
||||
# #
|
||||
# IPCop is free software; you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation; either version 2 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPCop is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with IPCop; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Makefiles are based on LFSMake, which is #
|
||||
# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
|
||||
# #
|
||||
# Modifications by: #
|
||||
# ??-12-2003 Mark Wormgoor < mark@wormgoor.com> #
|
||||
# - Modified Makefile for IPCop build #
|
||||
# #
|
||||
# $Id: gd,v 1.5.2.4 2005/03/04 19:26:50 gespinasse Exp $
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2.0.33
|
||||
|
||||
THISAPP = gd-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = be0a6d326cd8567e736fbc75df0a5c45
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ VER = v6b
|
||||
|
||||
THISAPP = jpegsrc.$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = ftp://ftp.uu.net/graphics/jpeg
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/jpeg-6b
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = libjpeg
|
||||
@@ -77,8 +77,8 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --enable-static --enable-shared && \
|
||||
make
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr --enable-static --enable-shared
|
||||
cd $(DIR_APP) && make
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
|
||||
94
lfs/nagios
Normal file
94
lfs/nagios
Normal file
@@ -0,0 +1,94 @@
|
||||
###############################################################################
|
||||
# This file is part of the IPCop Firewall. #
|
||||
# #
|
||||
# IPCop is free software; you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation; either version 2 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPCop is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with IPCop; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Makefiles are based on LFSMake, which is #
|
||||
# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2.5
|
||||
|
||||
THISAPP = nagios-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.gz
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = nagios
|
||||
PAK_VER = 1
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE) \
|
||||
nagios-plugins-1.4.3.tar.gz
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
nagios-plugins-1.4.3.tar.gz = $(URL_IPFIRE)/nagios-plugins-1.4.3.tar.gz
|
||||
|
||||
$(DL_FILE)_MD5 = 1a77528f6797bd3c0320da5e4fae2b1a
|
||||
nagios-plugins-1.4.3.tar.gz_MD5 = 2c40fc69d51cc979e85150870a1daa93
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
dist:
|
||||
@$(PAK)
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr/nagios --with-cgiurl=/nagios/cgi-bin \
|
||||
--with-htmurl=/nagios --with-nagios-user=nobody \
|
||||
--with-nagios-group=nobody
|
||||
cd $(DIR_APP) && make all
|
||||
cd $(DIR_APP) && make install
|
||||
### Plugins
|
||||
cd $(DIR_SRC) && tar zxf $(DIR_DL)/nagios-plugins-1.4.3.tar.gz
|
||||
cd $(DIR_SRC)/nagios-plugins-1.4.3 && ./configure --prefix=/usr/nagios --with-ping-command="-n %s -c %d"
|
||||
cd $(DIR_SRC)/nagios-plugins-1.4.3 && make
|
||||
cd $(DIR_SRC)/nagios-plugins-1.4.3 && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
12
make.sh
12
make.sh
@@ -587,6 +587,11 @@ buildipcop() {
|
||||
ipcopmake python
|
||||
ipcopmake libnet
|
||||
ipcopmake libpng
|
||||
ipcopmake libtiff
|
||||
ipcopmake libjpeg
|
||||
ipcopmake lcms
|
||||
ipcopmake libmng
|
||||
ipcopmake freetype
|
||||
ipcopmake gd
|
||||
ipcopmake popt
|
||||
ipcopmake slang
|
||||
@@ -681,11 +686,6 @@ buildipcop() {
|
||||
ipcopmake startscripts
|
||||
## Zuerst die Libs und dann die Programme. Ordnung muss sein!
|
||||
ipcopmake java
|
||||
ipcopmake libtiff
|
||||
ipcopmake libjpeg
|
||||
ipcopmake lcms
|
||||
ipcopmake libmng
|
||||
ipcopmake freetype
|
||||
ipcopmake bootsplash
|
||||
ipcopmake libxml2
|
||||
ipcopmake spandsp
|
||||
@@ -760,6 +760,7 @@ buildipcop() {
|
||||
ipcopmake tftp-hpa
|
||||
ipcopmake subversion
|
||||
ipcopmake iptraf
|
||||
ipcopmake nagios
|
||||
# ipcopmake stunnel # Ausgeschaltet, weil wir es doch nicht nutzen
|
||||
}
|
||||
|
||||
@@ -890,6 +891,7 @@ ipfirepackages() {
|
||||
ipfiredist libxml2
|
||||
ipfiredist mailx
|
||||
ipfiredist mldonkey
|
||||
ipfiredist nagios
|
||||
ipfiredist nfs
|
||||
ipfiredist nmap
|
||||
ipfiredist ntop
|
||||
|
||||
@@ -19633,8 +19633,8 @@ usr/bin/wrjpgcom
|
||||
#usr/include/jerror.h
|
||||
#usr/include/jmorecfg.h
|
||||
#usr/include/jpeglib.h
|
||||
usr/lib/libjpeg.a
|
||||
usr/lib/libjpeg.la
|
||||
#usr/lib/libjpeg.a
|
||||
#usr/lib/libjpeg.la
|
||||
usr/lib/libjpeg.so
|
||||
usr/lib/libjpeg.so.62
|
||||
usr/lib/libjpeg.so.62.0.0
|
||||
@@ -19651,7 +19651,7 @@ lib/libsafe.so.2.0.16
|
||||
lib/libsafe.so.2
|
||||
#usr/share/man/man8/libsafe.8
|
||||
##
|
||||
## gd-2.0.20
|
||||
## gd-2.0.33
|
||||
##
|
||||
#usr/bin/annotate
|
||||
#usr/bin/bdftogd
|
||||
@@ -19664,6 +19664,10 @@ lib/libsafe.so.2
|
||||
#usr/bin/pngtogd
|
||||
#usr/bin/pngtogd2
|
||||
#usr/bin/webpng
|
||||
#usr/bin/gd2togif
|
||||
#usr/bin/gdcmpgif
|
||||
#usr/bin/giftogd2
|
||||
#usr/include/entities.h
|
||||
#usr/include/gd.h
|
||||
#usr/include/gdfx.h
|
||||
#usr/include/gd_io.h
|
||||
|
||||
351
src/paks/nagios/ROOTFILES
Normal file
351
src/paks/nagios/ROOTFILES
Normal file
@@ -0,0 +1,351 @@
|
||||
usr/nagios
|
||||
#usr/nagios/bin
|
||||
#usr/nagios/bin/nagios
|
||||
#usr/nagios/bin/nagiostats
|
||||
#usr/nagios/sbin
|
||||
#usr/nagios/sbin/avail.cgi
|
||||
#usr/nagios/sbin/cmd.cgi
|
||||
#usr/nagios/sbin/config.cgi
|
||||
#usr/nagios/sbin/extinfo.cgi
|
||||
#usr/nagios/sbin/histogram.cgi
|
||||
#usr/nagios/sbin/history.cgi
|
||||
#usr/nagios/sbin/notifications.cgi
|
||||
#usr/nagios/sbin/outages.cgi
|
||||
#usr/nagios/sbin/showlog.cgi
|
||||
#usr/nagios/sbin/status.cgi
|
||||
#usr/nagios/sbin/statusmap.cgi
|
||||
#usr/nagios/sbin/statuswml.cgi
|
||||
#usr/nagios/sbin/statuswrl.cgi
|
||||
#usr/nagios/sbin/summary.cgi
|
||||
#usr/nagios/sbin/tac.cgi
|
||||
#usr/nagios/sbin/trends.cgi
|
||||
#usr/nagios/share
|
||||
#usr/nagios/share/contexthelp
|
||||
#usr/nagios/share/contexthelp/A1.html
|
||||
#usr/nagios/share/contexthelp/A2.html
|
||||
#usr/nagios/share/contexthelp/A3.html
|
||||
#usr/nagios/share/contexthelp/A4.html
|
||||
#usr/nagios/share/contexthelp/A5.html
|
||||
#usr/nagios/share/contexthelp/A6.html
|
||||
#usr/nagios/share/contexthelp/A7.html
|
||||
#usr/nagios/share/contexthelp/B1.html
|
||||
#usr/nagios/share/contexthelp/C1.html
|
||||
#usr/nagios/share/contexthelp/D1.html
|
||||
#usr/nagios/share/contexthelp/E1.html
|
||||
#usr/nagios/share/contexthelp/F1.html
|
||||
#usr/nagios/share/contexthelp/G1.html
|
||||
#usr/nagios/share/contexthelp/G2.html
|
||||
#usr/nagios/share/contexthelp/G3.html
|
||||
#usr/nagios/share/contexthelp/G4.html
|
||||
#usr/nagios/share/contexthelp/G5.html
|
||||
#usr/nagios/share/contexthelp/G6.html
|
||||
#usr/nagios/share/contexthelp/H1.html
|
||||
#usr/nagios/share/contexthelp/H2.html
|
||||
#usr/nagios/share/contexthelp/H3.html
|
||||
#usr/nagios/share/contexthelp/H4.html
|
||||
#usr/nagios/share/contexthelp/H5.html
|
||||
#usr/nagios/share/contexthelp/H6.html
|
||||
#usr/nagios/share/contexthelp/H7.html
|
||||
#usr/nagios/share/contexthelp/H8.html
|
||||
#usr/nagios/share/contexthelp/I1.html
|
||||
#usr/nagios/share/contexthelp/I2.html
|
||||
#usr/nagios/share/contexthelp/I3.html
|
||||
#usr/nagios/share/contexthelp/I4.html
|
||||
#usr/nagios/share/contexthelp/I5.html
|
||||
#usr/nagios/share/contexthelp/I6.html
|
||||
#usr/nagios/share/contexthelp/I7.html
|
||||
#usr/nagios/share/contexthelp/I8.html
|
||||
#usr/nagios/share/contexthelp/I9.html
|
||||
#usr/nagios/share/contexthelp/J1.html
|
||||
#usr/nagios/share/contexthelp/K1.html
|
||||
#usr/nagios/share/contexthelp/L1.html
|
||||
#usr/nagios/share/contexthelp/L10.html
|
||||
#usr/nagios/share/contexthelp/L11.html
|
||||
#usr/nagios/share/contexthelp/L12.html
|
||||
#usr/nagios/share/contexthelp/L13.html
|
||||
#usr/nagios/share/contexthelp/L2.html
|
||||
#usr/nagios/share/contexthelp/L3.html
|
||||
#usr/nagios/share/contexthelp/L4.html
|
||||
#usr/nagios/share/contexthelp/L5.html
|
||||
#usr/nagios/share/contexthelp/L6.html
|
||||
#usr/nagios/share/contexthelp/L7.html
|
||||
#usr/nagios/share/contexthelp/L8.html
|
||||
#usr/nagios/share/contexthelp/L9.html
|
||||
#usr/nagios/share/contexthelp/M1.html
|
||||
#usr/nagios/share/contexthelp/M2.html
|
||||
#usr/nagios/share/contexthelp/M3.html
|
||||
#usr/nagios/share/contexthelp/M4.html
|
||||
#usr/nagios/share/contexthelp/M5.html
|
||||
#usr/nagios/share/contexthelp/M6.html
|
||||
#usr/nagios/share/contexthelp/N1.html
|
||||
#usr/nagios/share/contexthelp/N2.html
|
||||
#usr/nagios/share/contexthelp/N3.html
|
||||
#usr/nagios/share/contexthelp/N4.html
|
||||
#usr/nagios/share/contexthelp/N5.html
|
||||
#usr/nagios/share/contexthelp/N6.html
|
||||
#usr/nagios/share/contexthelp/N7.html
|
||||
#usr/nagios/share/docs
|
||||
#usr/nagios/share/docs/about.html
|
||||
#usr/nagios/share/docs/adaptive.html
|
||||
#usr/nagios/share/docs/addons.html
|
||||
#usr/nagios/share/docs/beginners.html
|
||||
#usr/nagios/share/docs/cgiauth.html
|
||||
#usr/nagios/share/docs/cgiincludes.html
|
||||
#usr/nagios/share/docs/cgis.html
|
||||
#usr/nagios/share/docs/checkscheduling.html
|
||||
#usr/nagios/share/docs/clusters.html
|
||||
#usr/nagios/share/docs/commandfile.html
|
||||
#usr/nagios/share/docs/config.html
|
||||
#usr/nagios/share/docs/configcgi.html
|
||||
#usr/nagios/share/docs/configextinfo.html
|
||||
#usr/nagios/share/docs/configmain.html
|
||||
#usr/nagios/share/docs/configobject.html
|
||||
#usr/nagios/share/docs/dependencies.html
|
||||
#usr/nagios/share/docs/distributed.html
|
||||
#usr/nagios/share/docs/downtime.html
|
||||
#usr/nagios/share/docs/embeddedperl.html
|
||||
#usr/nagios/share/docs/escalations.html
|
||||
#usr/nagios/share/docs/eventhandlers.html
|
||||
#usr/nagios/share/docs/extcommands.html
|
||||
#usr/nagios/share/docs/flapping.html
|
||||
#usr/nagios/share/docs/freshness.html
|
||||
#usr/nagios/share/docs/funstuff.html
|
||||
#usr/nagios/share/docs/images
|
||||
#usr/nagios/share/docs/images/activepassive.png
|
||||
#usr/nagios/share/docs/images/cgi-avail-a.png
|
||||
#usr/nagios/share/docs/images/cgi-avail-b.png
|
||||
#usr/nagios/share/docs/images/cgi-cmd.png
|
||||
#usr/nagios/share/docs/images/cgi-config.png
|
||||
#usr/nagios/share/docs/images/cgi-extinfo-a.png
|
||||
#usr/nagios/share/docs/images/cgi-extinfo-b.png
|
||||
#usr/nagios/share/docs/images/cgi-extinfo-c.png
|
||||
#usr/nagios/share/docs/images/cgi-extinfo-d.png
|
||||
#usr/nagios/share/docs/images/cgi-histogram.png
|
||||
#usr/nagios/share/docs/images/cgi-history.png
|
||||
#usr/nagios/share/docs/images/cgi-notifications.png
|
||||
#usr/nagios/share/docs/images/cgi-outages.png
|
||||
#usr/nagios/share/docs/images/cgi-showlog.png
|
||||
#usr/nagios/share/docs/images/cgi-status-a.png
|
||||
#usr/nagios/share/docs/images/cgi-status-b.png
|
||||
#usr/nagios/share/docs/images/cgi-status-c.png
|
||||
#usr/nagios/share/docs/images/cgi-status-d.png
|
||||
#usr/nagios/share/docs/images/cgi-statusmap.png
|
||||
#usr/nagios/share/docs/images/cgi-statuswml.png
|
||||
#usr/nagios/share/docs/images/cgi-statuswrl.png
|
||||
#usr/nagios/share/docs/images/cgi-summary.png
|
||||
#usr/nagios/share/docs/images/cgi-tac.png
|
||||
#usr/nagios/share/docs/images/cgi-trends.png
|
||||
#usr/nagios/share/docs/images/checktiming.png
|
||||
#usr/nagios/share/docs/images/distributed.png
|
||||
#usr/nagios/share/docs/images/host-dependencies.png
|
||||
#usr/nagios/share/docs/images/indirecthostcheck.png
|
||||
#usr/nagios/share/docs/images/indirectsvccheck.png
|
||||
#usr/nagios/share/docs/images/indirectsvccheck2.png
|
||||
#usr/nagios/share/docs/images/interleaved1.png
|
||||
#usr/nagios/share/docs/images/interleaved2.png
|
||||
#usr/nagios/share/docs/images/interleaved3.png
|
||||
#usr/nagios/share/docs/images/logofullsize.png
|
||||
#usr/nagios/share/docs/images/mrtgstats.png
|
||||
#usr/nagios/share/docs/images/network-heirarchy.png
|
||||
#usr/nagios/share/docs/images/network-outage1.png
|
||||
#usr/nagios/share/docs/images/network-outage2.png
|
||||
#usr/nagios/share/docs/images/noninterleaved1.png
|
||||
#usr/nagios/share/docs/images/noninterleaved2.png
|
||||
#usr/nagios/share/docs/images/physical-network.png
|
||||
#usr/nagios/share/docs/images/plugintheory.png
|
||||
#usr/nagios/share/docs/images/redudancy.png
|
||||
#usr/nagios/share/docs/images/redundancy.png
|
||||
#usr/nagios/share/docs/images/service-dependencies.png
|
||||
#usr/nagios/share/docs/images/statetransitions.png
|
||||
#usr/nagios/share/docs/images/statetransitions2.png
|
||||
#usr/nagios/share/docs/index.html
|
||||
#usr/nagios/share/docs/indirectchecks.html
|
||||
#usr/nagios/share/docs/installing.html
|
||||
#usr/nagios/share/docs/installweb.html
|
||||
#usr/nagios/share/docs/int-snmptrap.html
|
||||
#usr/nagios/share/docs/int-tcpwrappers.html
|
||||
#usr/nagios/share/docs/macros.html
|
||||
#usr/nagios/share/docs/nagiostats.html
|
||||
#usr/nagios/share/docs/networkoutages.html
|
||||
#usr/nagios/share/docs/networkreachability.html
|
||||
#usr/nagios/share/docs/notifications.html
|
||||
#usr/nagios/share/docs/parallelization.html
|
||||
#usr/nagios/share/docs/passivechecks.html
|
||||
#usr/nagios/share/docs/perfdata.html
|
||||
#usr/nagios/share/docs/plugins.html
|
||||
#usr/nagios/share/docs/plugintheory.html
|
||||
#usr/nagios/share/docs/redundancy.html
|
||||
#usr/nagios/share/docs/robots.txt
|
||||
#usr/nagios/share/docs/security.html
|
||||
#usr/nagios/share/docs/stalking.html
|
||||
#usr/nagios/share/docs/starting.html
|
||||
#usr/nagios/share/docs/statetypes.html
|
||||
#usr/nagios/share/docs/stoprestart.html
|
||||
#usr/nagios/share/docs/templaterecursion.html
|
||||
#usr/nagios/share/docs/templatetricks.html
|
||||
#usr/nagios/share/docs/timeperiods.html
|
||||
#usr/nagios/share/docs/toc.html
|
||||
#usr/nagios/share/docs/tuning.html
|
||||
#usr/nagios/share/docs/verifyconfig.html
|
||||
#usr/nagios/share/docs/volatileservices.html
|
||||
#usr/nagios/share/docs/whatsnew.html
|
||||
#usr/nagios/share/docs/xodtemplate.html
|
||||
#usr/nagios/share/images
|
||||
#usr/nagios/share/images/ack.gif
|
||||
#usr/nagios/share/images/action.gif
|
||||
#usr/nagios/share/images/command.png
|
||||
#usr/nagios/share/images/comment.gif
|
||||
#usr/nagios/share/images/contexthelp1.gif
|
||||
#usr/nagios/share/images/contexthelp2.gif
|
||||
#usr/nagios/share/images/critical.png
|
||||
#usr/nagios/share/images/delay.gif
|
||||
#usr/nagios/share/images/delete.gif
|
||||
#usr/nagios/share/images/detail.gif
|
||||
#usr/nagios/share/images/disabled.gif
|
||||
#usr/nagios/share/images/down.gif
|
||||
#usr/nagios/share/images/downtime.gif
|
||||
#usr/nagios/share/images/empty.gif
|
||||
#usr/nagios/share/images/enabled.gif
|
||||
#usr/nagios/share/images/extinfo.gif
|
||||
#usr/nagios/share/images/flapping.gif
|
||||
#usr/nagios/share/images/greendot.gif
|
||||
#usr/nagios/share/images/histogram.png
|
||||
#usr/nagios/share/images/history.gif
|
||||
#usr/nagios/share/images/hostevent.gif
|
||||
#usr/nagios/share/images/info.png
|
||||
#usr/nagios/share/images/left.gif
|
||||
#usr/nagios/share/images/logofullsize.jpg
|
||||
#usr/nagios/share/images/logos
|
||||
#usr/nagios/share/images/logos/nagios.gd2
|
||||
#usr/nagios/share/images/logos/nagios.gif
|
||||
#usr/nagios/share/images/logos/nagiosvrml.png
|
||||
#usr/nagios/share/images/logos/unknown.gd2
|
||||
#usr/nagios/share/images/logos/unknown.gif
|
||||
#usr/nagios/share/images/logrotate.png
|
||||
#usr/nagios/share/images/ndisabled.gif
|
||||
#usr/nagios/share/images/noack.gif
|
||||
#usr/nagios/share/images/notes.gif
|
||||
#usr/nagios/share/images/notify.gif
|
||||
#usr/nagios/share/images/orangedot.gif
|
||||
#usr/nagios/share/images/passiveonly.gif
|
||||
#usr/nagios/share/images/recovery.png
|
||||
#usr/nagios/share/images/redudancy.png
|
||||
#usr/nagios/share/images/redundancy.png
|
||||
#usr/nagios/share/images/restart.gif
|
||||
#usr/nagios/share/images/right.gif
|
||||
#usr/nagios/share/images/sblogo.jpg
|
||||
#usr/nagios/share/images/serviceevent.gif
|
||||
#usr/nagios/share/images/start.gif
|
||||
#usr/nagios/share/images/status.gif
|
||||
#usr/nagios/share/images/status2.gif
|
||||
#usr/nagios/share/images/status3.gif
|
||||
#usr/nagios/share/images/status4.gif
|
||||
#usr/nagios/share/images/stop.gif
|
||||
#usr/nagios/share/images/tacdisabled.jpg
|
||||
#usr/nagios/share/images/tacdisabled.png
|
||||
#usr/nagios/share/images/tacenabled.jpg
|
||||
#usr/nagios/share/images/tacenabled.png
|
||||
#usr/nagios/share/images/thermcrit.png
|
||||
#usr/nagios/share/images/thermok.png
|
||||
#usr/nagios/share/images/thermwarn.png
|
||||
#usr/nagios/share/images/trends.gif
|
||||
#usr/nagios/share/images/trendshost.png
|
||||
#usr/nagios/share/images/trendssvc.png
|
||||
#usr/nagios/share/images/unknown.png
|
||||
#usr/nagios/share/images/up.gif
|
||||
#usr/nagios/share/images/warning.png
|
||||
#usr/nagios/share/images/weblogo1.png
|
||||
#usr/nagios/share/images/zoom1.gif
|
||||
#usr/nagios/share/images/zoom2.gif
|
||||
#usr/nagios/share/index.html
|
||||
#usr/nagios/share/main.html
|
||||
#usr/nagios/share/media
|
||||
#usr/nagios/share/media/critical.wav
|
||||
#usr/nagios/share/media/hostdown.wav
|
||||
#usr/nagios/share/media/warning.wav
|
||||
#usr/nagios/share/robots.txt
|
||||
#usr/nagios/share/side.html
|
||||
#usr/nagios/share/ssi
|
||||
#usr/nagios/share/stylesheets
|
||||
#usr/nagios/share/stylesheets/avail.css
|
||||
#usr/nagios/share/stylesheets/checksanity.css
|
||||
#usr/nagios/share/stylesheets/cmd.css
|
||||
#usr/nagios/share/stylesheets/common.css
|
||||
#usr/nagios/share/stylesheets/config.css
|
||||
#usr/nagios/share/stylesheets/extinfo.css
|
||||
#usr/nagios/share/stylesheets/histogram.css
|
||||
#usr/nagios/share/stylesheets/history.css
|
||||
#usr/nagios/share/stylesheets/ministatus.css
|
||||
#usr/nagios/share/stylesheets/notifications.css
|
||||
#usr/nagios/share/stylesheets/outages.css
|
||||
#usr/nagios/share/stylesheets/showlog.css
|
||||
#usr/nagios/share/stylesheets/status.css
|
||||
#usr/nagios/share/stylesheets/statusmap.css
|
||||
#usr/nagios/share/stylesheets/summary.css
|
||||
#usr/nagios/share/stylesheets/tac.css
|
||||
#usr/nagios/share/stylesheets/trends.css
|
||||
#usr/nagios/var
|
||||
#usr/nagios/var/archives
|
||||
#usr/nagios/libexec
|
||||
#usr/nagios/libexec/check_breeze
|
||||
#usr/nagios/libexec/check_by_ssh
|
||||
#usr/nagios/libexec/check_clamd
|
||||
#usr/nagios/libexec/check_dhcp
|
||||
#usr/nagios/libexec/check_disk
|
||||
#usr/nagios/libexec/check_disk_smb
|
||||
#usr/nagios/libexec/check_dummy
|
||||
#usr/nagios/libexec/check_file_age
|
||||
#usr/nagios/libexec/check_flexlm
|
||||
#usr/nagios/libexec/check_ftp
|
||||
#usr/nagios/libexec/check_http
|
||||
#usr/nagios/libexec/check_icmp
|
||||
#usr/nagios/libexec/check_ifoperstatus
|
||||
#usr/nagios/libexec/check_ifstatus
|
||||
#usr/nagios/libexec/check_imap
|
||||
#usr/nagios/libexec/check_ircd
|
||||
#usr/nagios/libexec/check_jabber
|
||||
#usr/nagios/libexec/check_ldap
|
||||
#usr/nagios/libexec/check_ldaps
|
||||
#usr/nagios/libexec/check_load
|
||||
#usr/nagios/libexec/check_log
|
||||
#usr/nagios/libexec/check_mailq
|
||||
#usr/nagios/libexec/check_mrtg
|
||||
#usr/nagios/libexec/check_mrtgtraf
|
||||
#usr/nagios/libexec/check_nagios
|
||||
#usr/nagios/libexec/check_nntp
|
||||
#usr/nagios/libexec/check_nntps
|
||||
#usr/nagios/libexec/check_nt
|
||||
#usr/nagios/libexec/check_ntp
|
||||
#usr/nagios/libexec/check_nwstat
|
||||
#usr/nagios/libexec/check_oracle
|
||||
#usr/nagios/libexec/check_overcr
|
||||
#usr/nagios/libexec/check_ping
|
||||
#usr/nagios/libexec/check_pop
|
||||
#usr/nagios/libexec/check_procs
|
||||
#usr/nagios/libexec/check_real
|
||||
#usr/nagios/libexec/check_rpc
|
||||
#usr/nagios/libexec/check_sensors
|
||||
#usr/nagios/libexec/check_simap
|
||||
#usr/nagios/libexec/check_smtp
|
||||
#usr/nagios/libexec/check_spop
|
||||
#usr/nagios/libexec/check_ssh
|
||||
#usr/nagios/libexec/check_ssmtp
|
||||
#usr/nagios/libexec/check_swap
|
||||
#usr/nagios/libexec/check_tcp
|
||||
#usr/nagios/libexec/check_time
|
||||
#usr/nagios/libexec/check_udp
|
||||
#usr/nagios/libexec/check_udp2
|
||||
#usr/nagios/libexec/check_ups
|
||||
#usr/nagios/libexec/check_users
|
||||
#usr/nagios/libexec/check_wave
|
||||
#usr/nagios/libexec/negate
|
||||
#usr/nagios/libexec/urlize
|
||||
#usr/nagios/libexec/utils.pm
|
||||
#usr/nagios/libexec/utils.sh
|
||||
#usr/nagios/share/locale
|
||||
#usr/nagios/share/locale/de
|
||||
#usr/nagios/share/locale/de/LC_MESSAGES
|
||||
#usr/nagios/share/locale/de/LC_MESSAGES/nagios-plugins.mo
|
||||
#usr/nagios/share/locale/fr
|
||||
#usr/nagios/share/locale/fr/LC_MESSAGES
|
||||
#usr/nagios/share/locale/fr/LC_MESSAGES/nagios-plugins.mo
|
||||
11
src/paks/nagios/install.sh
Normal file
11
src/paks/nagios/install.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
#################################################################
|
||||
# #
|
||||
# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
|
||||
# #
|
||||
#################################################################
|
||||
#
|
||||
# Extract the files
|
||||
tar xfz files.tgz -C /
|
||||
cp -f ROOTFILES /opt/pakfire/installed/ROOTFILES.$2
|
||||
10
src/paks/nagios/uninstall.sh
Normal file
10
src/paks/nagios/uninstall.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
#################################################################
|
||||
# #
|
||||
# This file belongs to IPFire Firewall - GPLv2 - www.ipfire.org #
|
||||
# #
|
||||
#################################################################
|
||||
#
|
||||
# Delete the files
|
||||
## Befehl fehlt noch
|
||||
rm -f /opt/pakfire/installed/ROOTFILES.$2
|
||||
Reference in New Issue
Block a user