This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via bddc81b43c4ee68ed2eb32f23b0b337b0e1f76ab (commit) via 85ac4216e1a786465e283f2764ad137abd869230 (commit) via b444b20ccfdf8ddb981059e2bc8e560434ee524b (commit) via 8092f272494e25a04e5a410653d8e5715006f0f9 (commit) from 57f898646a9c792ec1865e2b7fdb11ef9a56cbde (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit bddc81b43c4ee68ed2eb32f23b0b337b0e1f76ab Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sun Aug 7 22:57:26 2011 +0200
nagios_nrpe: rename nrpe to nagios_nrpe.
commit 85ac4216e1a786465e283f2764ad137abd869230 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Aug 6 10:51:15 2011 +0200
nrpe: Split configure options into more lines.
commit b444b20ccfdf8ddb981059e2bc8e560434ee524b Merge: 57f8986 8092f27 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Fri Aug 5 16:57:50 2011 +0200
Merge commit 'ms/nrpe'
commit 8092f272494e25a04e5a410653d8e5715006f0f9 Author: Gerd Hoerst gerd@hoerst.net Date: Thu Aug 4 12:53:45 2011 +0200
New package: nrpe plugin for nagios.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/packages/nagios_nrpe | 1 + lfs/{parted => nagios_nrpe} | 14 ++++++++------ make.sh | 1 + 3 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 config/rootfiles/packages/nagios_nrpe copy lfs/{parted => nagios_nrpe} (90%)
Difference in files: diff --git a/config/rootfiles/packages/nagios_nrpe b/config/rootfiles/packages/nagios_nrpe new file mode 100644 index 0000000..943d8f5 --- /dev/null +++ b/config/rootfiles/packages/nagios_nrpe @@ -0,0 +1 @@ +usr/lib/nagios/check_nrpe diff --git a/lfs/nagios_nrpe b/lfs/nagios_nrpe new file mode 100644 index 0000000..34bc5a8 --- /dev/null +++ b/lfs/nagios_nrpe @@ -0,0 +1,87 @@ +############################################################################### +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007-2011 IPFire Team info@ipfire.org # +# # +# This program 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 3 of the License, or # +# (at your option) any later version. # +# # +# This program 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 this program. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +VER = 2.12 + +THISAPP = nrpe-$(VER) +DL_FILE = $(THISAPP).tar.gz +DL_FROM = $(URL_IPFIRE) +DIR_APP = $(DIR_SRC)/$(THISAPP) +TARGET = $(DIR_INFO)/$(THISAPP) + +PROG = nagios_nrpe +PAK_VER = 1 + +DEPS = "nagios" + +############################################################################### +# Top-level Rules +############################################################################### + +objects = $(DL_FILE) + +$(DL_FILE) = $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 = b2d75e2962f1e3151ef58794d60c9e97 + +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 --libexecdir=/usr/lib/nagios \ + --with-nrpe-user=nobody --with-nrpe-group=nobody \ + --with-nagios-user=nobody --with-nagios-group=nobody + cd $(DIR_APP) && make $(MAKETUNING) + cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) + @$(POSTBUILD) diff --git a/make.sh b/make.sh index a9bc4be..45185ba 100755 --- a/make.sh +++ b/make.sh @@ -615,6 +615,7 @@ buildipfire() { ipfiremake phpSANE ipfiremake tunctl ipfiremake nagios + ipfiremake nagios_nrpe ipfiremake ebtables ipfiremake fontconfig ipfiremake freefont
hooks/post-receive -- IPFire 2.x development tree