diff options
author | tonnerre <tonnerre@pkgsrc.org> | 2008-06-21 14:52:48 +0000 |
---|---|---|
committer | tonnerre <tonnerre@pkgsrc.org> | 2008-06-21 14:52:48 +0000 |
commit | 056cf1be94d9dd62e1b8e4c7c6ee0d7da40e8229 (patch) | |
tree | 46a9adf4e8bad7f261bdc126f7d3ebf4ea6aeff0 /net | |
parent | fc65c04a696cf587b2667d583ed008d4626cf3c4 (diff) | |
download | pkgsrc-056cf1be94d9dd62e1b8e4c7c6ee0d7da40e8229.tar.gz |
Update nagios-nrpe to version 2.12. Changes:
Changes in 2.12:
* Fix for unterminated multiline plugin (garbage) output.
Changes in 2.11:
* Added lib64 library paths to configure script for 64-bit systems.
* Added --with-ssl-lib configure script option.
* Added --with-log-facility option to control syslog logging.
Changes in 2.10:
* Moved PDF docs to docs/ subdirectory, added OpenOffice source document.
* A critical result is now returned for child processed that die due to a
signal.
Changes in 2.9:
* Fixed bug with --with-nrpe-group configure script option.
* Fixed bug with check_disk thresholds in sample config file.
* Added NRPE_PROGRAMVERSION and NRPE_MULTILINESUPPORT environment variables
for scripts that need to detect NRPE version and capabilities.
* Added asprintf() support for systems that are missing it.
Changes in 2.8.1:
* Fixed configure script error with user-specified NRPE group.
Changes in 2.8:
* Added support for multiline plugin output (limited to 1KB at the moment).
* Changes to sample config files.
* Added ';' as an additional prohibited metachar for command arguments.
* Updated documentation and added easier installation commands.
Changes in 2.7.1:
* Changed C++ style comment to C style to fix compilation errors on AIX.
Changes in 2.7:
* Patches for detection SSL header and library locations.
* NRPE daemon will now partially ignore non-fatal configuration file errors
and attempt to startup.
Changes in 2.6:
* Added -u option to check_nrpe to return UNKNOWN states on socket timeouts.
* Added connection_timeout variable to NRPE daemon to catch dead client
connections.
* Added graceful timeout to check_nrpe to ensure connection to NRPE daemon
is properly closed.
Diffstat (limited to 'net')
-rw-r--r-- | net/nagios-nrpe/Makefile | 4 | ||||
-rw-r--r-- | net/nagios-nrpe/distinfo | 10 | ||||
-rw-r--r-- | net/nagios-nrpe/patches/patch-aa | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/net/nagios-nrpe/Makefile b/net/nagios-nrpe/Makefile index 6a14685df46..fcb5b534d2e 100644 --- a/net/nagios-nrpe/Makefile +++ b/net/nagios-nrpe/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2007/11/26 22:14:19 seb Exp $ +# $NetBSD: Makefile,v 1.10 2008/06/21 14:52:48 tonnerre Exp $ # -DISTNAME= nrpe-2.5.2 +DISTNAME= nrpe-2.12 PKGNAME= nagios-${DISTNAME} CATEGORIES= net sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nagios/} diff --git a/net/nagios-nrpe/distinfo b/net/nagios-nrpe/distinfo index 0d47d93dab8..660fa7619df 100644 --- a/net/nagios-nrpe/distinfo +++ b/net/nagios-nrpe/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2006/08/17 14:23:07 taca Exp $ +$NetBSD: distinfo,v 1.4 2008/06/21 14:52:48 tonnerre Exp $ -SHA1 (nrpe-2.5.2.tar.gz) = e0fe51474d0d08fa6fc4b09ceab9adcc2585ddac -RMD160 (nrpe-2.5.2.tar.gz) = 79eb2486ebe81e520b4092d91f44e4c1ad0fd44e -Size (nrpe-2.5.2.tar.gz) = 100637 bytes -SHA1 (patch-aa) = 2e92dc516c14c61eadadd742cdf88655e580bb8d +SHA1 (nrpe-2.12.tar.gz) = 208595c175d726e8e377d565b21897f4de1648cc +RMD160 (nrpe-2.12.tar.gz) = 3413f84c9bb926a4dd55cc02d7b0a01bd7fc99ee +Size (nrpe-2.12.tar.gz) = 405725 bytes +SHA1 (patch-aa) = 0250746f7e0be5eb2f419fd7a3465ca66aacae94 diff --git a/net/nagios-nrpe/patches/patch-aa b/net/nagios-nrpe/patches/patch-aa index 4ed6a917583..2ad3de43c17 100644 --- a/net/nagios-nrpe/patches/patch-aa +++ b/net/nagios-nrpe/patches/patch-aa @@ -1,12 +1,12 @@ -$NetBSD: patch-aa,v 1.1 2006/06/04 11:06:51 joerg Exp $ +$NetBSD: patch-aa,v 1.2 2008/06/21 14:52:49 tonnerre Exp $ ---- src/nrpe.c.orig 2006-05-29 16:23:55.000000000 +0000 +--- src/nrpe.c.orig 2008-03-10 22:04:43.000000000 +0100 +++ src/nrpe.c -@@ -1234,7 +1234,6 @@ int my_system(char *command,int timeout, +@@ -1320,7 +1320,6 @@ int my_system(char *command,int timeout, pid_t pid; int status; int result; - extern int errno; char buffer[MAX_INPUT_BUFFER]; - char temp_buffer[MAX_INPUT_BUFFER]; int fd[2]; + FILE *fp; |