[pkg-nagios-changes] [Git][nagios-team/nrpe][upstream] New upstream version 4.1.1
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Fri Aug 2 05:32:12 BST 2024
Bas Couwenberg pushed to branch upstream 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
- - - - -
9 changed files:
- CHANGELOG.md
- README.md
- THANKS
- configure
- configure.ac
- 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
=====================================
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/-/commit/23b95e4381bf4cd46c3978a188acec64f5389e9d
--
View it on GitLab: https://salsa.debian.org/nagios-team/nrpe/-/commit/23b95e4381bf4cd46c3978a188acec64f5389e9d
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/5530e4ef/attachment-0001.htm>
More information about the pkg-nagios-changes
mailing list