[pkg-nagios-changes] [Git][nagios-team/nrpe][master] 4 commits: New upstream version 4.1.1

Bas Couwenberg (@sebastic) gitlab at salsa.debian.org
Fri Aug 2 05:32:05 BST 2024



Bas Couwenberg pushed to branch master at Debian Nagios Maintainer Group / nrpe


Commits:
23b95e43 by Bas Couwenberg at 2024-08-02T06:26:22+02:00
New upstream version 4.1.1
- - - - -
0b68b53a by Bas Couwenberg at 2024-08-02T06:26:24+02:00
Update upstream source from tag 'upstream/4.1.1'

Update to upstream version '4.1.1'
with Debian dir 527e769ed6e6693987e8a2a40f2a78cdf8e3de9f
- - - - -
bc13ee4c by Bas Couwenberg at 2024-08-02T06:26:42+02:00
New upstream release.

- - - - -
3709ce7d by Bas Couwenberg at 2024-08-02T06:27:52+02:00
Set distribution to unstable.

- - - - -


10 changed files:

- CHANGELOG.md
- README.md
- THANKS
- configure
- configure.ac
- debian/changelog
- include/common.h.in
- nrpe.spec.in
- startup/solaris-init.xml.in
- update-version


Changes:

=====================================
CHANGELOG.md
=====================================
@@ -1,7 +1,13 @@
 NRPE Changelog
 ==============
+[4.1.1](https://github.com/NagiosEnterprises/nrpe/releases/tag/nrpe-4.1.1) - 2024-08-01
+------------------
+**FIXES**
+- Use correct HUP signal for Solaris
+
 
-4.1.0 - 2022-06-??
+
+[4.1.0](https://github.com/NagiosEnterprises/nrpe/releases/tag/nrpe-4.1.0) - 2022-07-18
 ------------------
 **ENHANCEMENTS**
 - Add support for OpenSSL 3 (and EL9/Debian 11/Ubuntu 22)
@@ -10,6 +16,7 @@ NRPE Changelog
 - Change -u (connection issues return UNKNOWN) to include all SSL-layer failures.
 - Disable renegotiation and enforce server cipher order when using SSL
 - Verify that private keys match certificates when using SSL
+
 **FIXES**
 - Fixed incorrect default for nasty_metachars in nrpe.cfg
 - Fixed incorrect help text for --use-adh


=====================================
README.md
=====================================
@@ -1,11 +1,5 @@
 ![Nagios!](https://www.nagios.com/wp-content/uploads/2015/05/Nagios-Black-500x124.png)
 
-[![Build Status](https://travis-ci.org/NagiosEnterprises/nrpe.svg?branch=master)](https://travis-ci.org/NagiosEnterprises/nrpe)
-
- 🔴 🔴 🔴
-***Notice: As of NRPE version 4.0.1, this project is deprecated. It will not receive any more bugfixes or features, except to resolve security issues.***
- 🔴 🔴 🔴
-
 Nagios Remote Plugin Executor (NRPE)
 ====================================
 


=====================================
THANKS
=====================================
@@ -61,3 +61,4 @@ Thierry Bertaud
 Ton Voon
 Vadim Antipov
 Yoda-BZH
+Marcel Telka


=====================================
configure
=====================================
@@ -718,6 +718,7 @@ infodir
 docdir
 oldincludedir
 includedir
+runstatedir
 localstatedir
 sharedstatedir
 sysconfdir
@@ -819,6 +820,7 @@ datadir='${datarootdir}'
 sysconfdir='${prefix}/etc'
 sharedstatedir='${prefix}/com'
 localstatedir='${prefix}/var'
+runstatedir='${localstatedir}/run'
 includedir='${prefix}/include'
 oldincludedir='/usr/include'
 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
@@ -1071,6 +1073,15 @@ do
   | -silent | --silent | --silen | --sile | --sil)
     silent=yes ;;
 
+  -runstatedir | --runstatedir | --runstatedi | --runstated \
+  | --runstate | --runstat | --runsta | --runst | --runs \
+  | --run | --ru | --r)
+    ac_prev=runstatedir ;;
+  -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
+  | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
+  | --run=* | --ru=* | --r=*)
+    runstatedir=$ac_optarg ;;
+
   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
     ac_prev=sbindir ;;
   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
@@ -1208,7 +1219,7 @@ fi
 for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
 		datadir sysconfdir sharedstatedir localstatedir includedir \
 		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
-		libdir localedir mandir
+		libdir localedir mandir runstatedir
 do
   eval ac_val=\$$ac_var
   # Remove trailing slashes.
@@ -2489,9 +2500,9 @@ ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
 
 
 PKG_NAME=nrpe
-PKG_VERSION="4.1.0"
+PKG_VERSION="4.1.1"
 PKG_HOME_URL="http://www.nagios.org/"
-PKG_REL_DATE="2022-07-18"
+PKG_REL_DATE="2024-08-01"
 RPM_RELEASE=1
 
 LANG=C


=====================================
configure.ac
=====================================
@@ -11,9 +11,9 @@ AC_CONFIG_AUX_DIR([build-aux])
 AC_PREFIX_DEFAULT(/usr/local/nagios)
 
 PKG_NAME=nrpe
-PKG_VERSION="4.1.0"
+PKG_VERSION="4.1.1"
 PKG_HOME_URL="http://www.nagios.org/"
-PKG_REL_DATE="2022-07-18"
+PKG_REL_DATE="2024-08-01"
 RPM_RELEASE=1
 
 LANG=C


=====================================
debian/changelog
=====================================
@@ -1,5 +1,6 @@
-nagios-nrpe (4.1.0-2) UNRELEASED; urgency=medium
+nagios-nrpe (4.1.1-1) unstable; urgency=medium
 
+  * New upstream release.
   * Add Rules-Requires-Root to control file.
   * Update lintian overrides.
   * Bump Standards-Version to 4.7.0, no changes.
@@ -7,7 +8,7 @@ nagios-nrpe (4.1.0-2) UNRELEASED; urgency=medium
   * Replace lsb-base dependency with sysvinit-utils (>= 3.05-4~).
   * Enable Salsa CI.
 
- -- Bas Couwenberg <sebastic at debian.org>  Wed, 30 Nov 2022 08:23:49 +0100
+ -- Bas Couwenberg <sebastic at debian.org>  Fri, 02 Aug 2024 06:27:37 +0200
 
 nagios-nrpe (4.1.0-1) unstable; urgency=medium
 


=====================================
include/common.h.in
=====================================
@@ -41,8 +41,8 @@
 # endif
 #endif
 
-#define PROGRAM_VERSION "4.1.0"
-#define MODIFICATION_DATE "2022-07-18"
+#define PROGRAM_VERSION "4.1.1"
+#define MODIFICATION_DATE "2024-08-01"
 
 #define OK							0
 #define ERROR						-1


=====================================
nrpe.spec.in
=====================================
@@ -22,7 +22,7 @@
 %define _sysconfdir /etc/nagios
 
 %define name @PACKAGE_NAME@
-%define version 4.1.0
+%define version 4.1.1
 %define release @RPM_RELEASE@
 %define nsusr @nrpe_user@
 %define nsgrp @nrpe_group@


=====================================
startup/solaris-init.xml.in
=====================================
@@ -105,7 +105,7 @@
 		<exec_method
 			type='method'
 			name='refresh'
-			exec=':hup'
+			exec=':kill -HUP'
 			timeout_seconds='60'/>
 
 		<property_group name='startd' type='framework'>


=====================================
update-version
=====================================
@@ -28,10 +28,10 @@ else
 fi
 
 # Current version number
-CURRENTVERSION=4.1.0
+CURRENTVERSION=4.1.1
 
 # Last date
-LASTDATE=2022-07-18
+LASTDATE=2024-08-01
 
 if [ "x$1" = "x" ]
 then



View it on GitLab: https://salsa.debian.org/nagios-team/nrpe/-/compare/dbd26bd7bd6044a7eabe127c5994cd071f7497f4...3709ce7d991019dfc675fb011cf183d8f3819b68

-- 
View it on GitLab: https://salsa.debian.org/nagios-team/nrpe/-/compare/dbd26bd7bd6044a7eabe127c5994cd071f7497f4...3709ce7d991019dfc675fb011cf183d8f3819b68
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-nagios-changes/attachments/20240802/f4cd61e8/attachment-0001.htm>


More information about the pkg-nagios-changes mailing list