]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Hinzugefuegt:
authorms <ms@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
Mon, 28 Aug 2006 17:42:07 +0000 (17:42 +0000)
committerms <ms@ea5c0bd1-69bd-2848-81d8-4f18e57aeed8>
Mon, 28 Aug 2006 17:42:07 +0000 (17:42 +0000)
  * 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

doc/ChangeLog
lfs/gd
lfs/libjpeg
lfs/nagios [new file with mode: 0644]
make.sh
src/ROOTFILES.i386
src/paks/nagios/ROOTFILES [new file with mode: 0644]
src/paks/nagios/install.sh [new file with mode: 0644]
src/paks/nagios/uninstall.sh [new file with mode: 0644]

index 5dbdd646bc55faf46e0874849e100dd08ee1f821..b424e9149c1c6ca3b5fc957eb6e984f1b6dfd3a9 100644 (file)
@@ -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
 
diff --git a/lfs/gd b/lfs/gd
index b9cc599436d168080c0dd364c3fa393a71e0ecff..1380ce07a18008ed1e20c05964af1420381e194d 100644 (file)
--- a/lfs/gd
+++ b/lfs/gd
@@ -1,89 +1,86 @@
-###############################################################################\r
-# This file is part of the IPCop Firewall.                                    #\r
-#                                                                             #\r
-# IPCop is free software; you can redistribute it and/or modify               #\r
-# it under the terms of the GNU General Public License as published by        #\r
-# the Free Software Foundation; either version 2 of the License, or           #\r
-# (at your option) any later version.                                         #\r
-#                                                                             #\r
-# IPCop is distributed in the hope that it will be useful,                    #\r
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #\r
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #\r
-# GNU General Public License for more details.                                #\r
-#                                                                             #\r
-# You should have received a copy of the GNU General Public License           #\r
-# along with IPCop; if not, write to the Free Software                        #\r
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    #\r
-#                                                                             #\r
-# Makefiles are based on LFSMake, which is                                    #\r
-# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com>                        #\r
-#                                                                             #\r
-# Modifications by:                                                           #\r
-# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #\r
-#          - Modified Makefile for IPCop build                                #\r
-#                                                                             #\r
-# $Id: gd,v 1.5.2.4 2005/03/04 19:26:50 gespinasse Exp $\r
-#                                                                             #\r
-###############################################################################\r
-\r
-###############################################################################\r
-# Definitions\r
-###############################################################################\r
-\r
-include Config\r
-\r
-VER        = 2.0.20\r
-\r
-THISAPP    = gd-$(VER)\r
-DL_FILE    = $(THISAPP).tar.gz\r
-DL_FROM    = http://www.boutell.com/gd/http\r
-DIR_APP    = $(DIR_SRC)/$(THISAPP)\r
-TARGET     = $(DIR_INFO)/$(THISAPP)\r
-\r
-###############################################################################\r
-# Top-level Rules\r
-###############################################################################\r
-\r
-objects = $(DL_FILE)\r
-\r
-$(DL_FILE) = $(DL_FROM)/$(DL_FILE)\r
-\r
-$(DL_FILE)_MD5 = 3e513bf438a8d797b508a4fbf52c9bd1\r
-\r
-install : $(TARGET)\r
-\r
-check : $(patsubst %,$(DIR_CHK)/%,$(objects))\r
-\r
-download :$(patsubst %,$(DIR_DL)/%,$(objects))\r
-\r
-md5 : $(subst %,%_MD5,$(objects))\r
-\r
-###############################################################################\r
-# Downloading, checking, md5sum\r
-###############################################################################\r
-\r
-$(patsubst %,$(DIR_CHK)/%,$(objects)) :\r
-       @$(CHECK)\r
-\r
-$(patsubst %,$(DIR_DL)/%,$(objects)) :\r
-       @$(LOAD)\r
-\r
-$(subst %,%_MD5,$(objects)) :\r
-       @$(MD5)\r
-\r
-###############################################################################\r
-# Installation Details\r
-###############################################################################\r
-\r
-$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))\r
-       @$(PREBUILD)\r
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)\r
-       cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls\r
-       cd $(DIR_APP) && sed -i \\r
-           -e 's%^#include "jpeglib.h".*$$%%' \\r
-           -e 's%^#include "jerror.h".*$$%%' gd_jpeg.c\r
-       cd $(DIR_APP) && make\r
-       cd $(DIR_APP) && make install\r
-       @rm -rf $(DIR_APP)\r
-       @$(POSTBUILD)\r
-\r
+###############################################################################
+# 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)
+
index c242b65e7e3ae139b7cf9e6d332e126dd1a256cf..6b1cf8fce938b37a31808183c44df78bd2097cf8 100644 (file)
@@ -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)
diff --git a/lfs/nagios b/lfs/nagios
new file mode 100644 (file)
index 0000000..c64e5ef
--- /dev/null
@@ -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)
diff --git a/make.sh b/make.sh
index ef4dfc0fd838cb91033c8a61a6261124f9e2cb1d..4e5b97b26b809cb9478d9e12fbb68542cce17681 100644 (file)
--- a/make.sh
+++ b/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
index 3b8be9e714ed6bfa1b9f6031acfc5348cbd483c4..81dd37726b1076896b913fc80844146ed2c91be8 100644 (file)
@@ -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
diff --git a/src/paks/nagios/ROOTFILES b/src/paks/nagios/ROOTFILES
new file mode 100644 (file)
index 0000000..b53fbbb
--- /dev/null
@@ -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
diff --git a/src/paks/nagios/install.sh b/src/paks/nagios/install.sh
new file mode 100644 (file)
index 0000000..3a9ce55
--- /dev/null
@@ -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
diff --git a/src/paks/nagios/uninstall.sh b/src/paks/nagios/uninstall.sh
new file mode 100644 (file)
index 0000000..ad61226
--- /dev/null
@@ -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