[pkg-nagios-changes] [Git][nagios-team/pkg-nagios-plugins-contrib][master] check_ssl_cert: Update to 2.27.0

Jan Wagner (@waja) gitlab at salsa.debian.org
Mon May 2 12:50:18 BST 2022



Jan Wagner pushed to branch master at Debian Nagios Maintainer Group / pkg-nagios-plugins-contrib


Commits:
7f92189a by Jan Wagner at 2022-05-02T13:46:20+02:00
check_ssl_cert: Update to 2.27.0

- - - - -


17 changed files:

- − check_ssl_cert/check_ssl_cert_2.26.0/VERSION
- check_ssl_cert/check_ssl_cert_2.26.0/AUTHORS.md → check_ssl_cert/check_ssl_cert_2.27.0/AUTHORS.md
- check_ssl_cert/check_ssl_cert_2.26.0/CITATION.cff → check_ssl_cert/check_ssl_cert_2.27.0/CITATION.cff
- check_ssl_cert/check_ssl_cert_2.26.0/COPYING.md → check_ssl_cert/check_ssl_cert_2.27.0/COPYING.md
- check_ssl_cert/check_ssl_cert_2.26.0/COPYRIGHT.md → check_ssl_cert/check_ssl_cert_2.27.0/COPYRIGHT.md
- check_ssl_cert/check_ssl_cert_2.26.0/ChangeLog → check_ssl_cert/check_ssl_cert_2.27.0/ChangeLog
- check_ssl_cert/check_ssl_cert_2.26.0/INSTALL.md → check_ssl_cert/check_ssl_cert_2.27.0/INSTALL.md
- check_ssl_cert/check_ssl_cert_2.26.0/Makefile → check_ssl_cert/check_ssl_cert_2.27.0/Makefile
- check_ssl_cert/check_ssl_cert_2.26.0/NEWS.md → check_ssl_cert/check_ssl_cert_2.27.0/NEWS.md
- check_ssl_cert/check_ssl_cert_2.26.0/README.md → check_ssl_cert/check_ssl_cert_2.27.0/README.md
- + check_ssl_cert/check_ssl_cert_2.27.0/VERSION
- check_ssl_cert/check_ssl_cert_2.26.0/check_ssl_cert → check_ssl_cert/check_ssl_cert_2.27.0/check_ssl_cert
- check_ssl_cert/check_ssl_cert_2.26.0/check_ssl_cert.1 → check_ssl_cert/check_ssl_cert_2.27.0/check_ssl_cert.1
- check_ssl_cert/check_ssl_cert_2.26.0/check_ssl_cert.completion → check_ssl_cert/check_ssl_cert_2.27.0/check_ssl_cert.completion
- check_ssl_cert/check_ssl_cert_2.26.0/check_ssl_cert.spec → check_ssl_cert/check_ssl_cert_2.27.0/check_ssl_cert.spec
- check_ssl_cert/control
- check_ssl_cert/src


Changes:

=====================================
check_ssl_cert/check_ssl_cert_2.26.0/VERSION deleted
=====================================
@@ -1 +0,0 @@
-2.26.0


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/AUTHORS.md → check_ssl_cert/check_ssl_cert_2.27.0/AUTHORS.md
=====================================


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/CITATION.cff → check_ssl_cert/check_ssl_cert_2.27.0/CITATION.cff
=====================================
@@ -230,7 +230,7 @@ authors:
   given-names: "Дилян"
   website: https://github.com/dilyanpalauzov
 title: "check_ssl_cert"
-version: 2.26.0
+version: 2.27.0
 date-released: 2022-04-28
 url: "https://github.com/matteocorti/check_ssl_cert"
 repository-code: "https://github.com/matteocorti/check_ssl_cert"


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/COPYING.md → check_ssl_cert/check_ssl_cert_2.27.0/COPYING.md
=====================================


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/COPYRIGHT.md → check_ssl_cert/check_ssl_cert_2.27.0/COPYRIGHT.md
=====================================


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/ChangeLog → check_ssl_cert/check_ssl_cert_2.27.0/ChangeLog
=====================================


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/INSTALL.md → check_ssl_cert/check_ssl_cert_2.27.0/INSTALL.md
=====================================


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/Makefile → check_ssl_cert/check_ssl_cert_2.27.0/Makefile
=====================================


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/NEWS.md → check_ssl_cert/check_ssl_cert_2.27.0/NEWS.md
=====================================
@@ -1,3 +1,5 @@
+* 2022-04-28 Version 2.27.0
+ * Fixed a bug with the ciphers check with older nmap versions
 * 2022-04-28 Version 2.26.0
  * Fixed a bug with the ciphers check with older nmap versions
  * Fixed a bug in the display of the expiration date


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/README.md → check_ssl_cert/check_ssl_cert_2.27.0/README.md
=====================================


=====================================
check_ssl_cert/check_ssl_cert_2.27.0/VERSION
=====================================
@@ -0,0 +1 @@
+2.27.0


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/check_ssl_cert → check_ssl_cert/check_ssl_cert_2.27.0/check_ssl_cert
=====================================
@@ -28,7 +28,7 @@
 ################################################################################
 # Constants
 
-VERSION=2.26.0
+VERSION=2.27.0
 SHORTNAME="SSL_CERT"
 
 VALID_ATTRIBUTES=",startdate,enddate,subject,issuer,modulus,serial,hash,email,ocsp_uri,fingerprint,"
@@ -5080,7 +5080,7 @@ main() {
 
         # -Pn is needed even if we specify a port
         TIMEOUT_REASON="checking ciphers"
-        exec_with_timeout "${NMAP_BIN} -Pn --script ssl-enum-ciphers ${NMAP_INETPROTO} ${HOST_ADDR} -p ${PORT}" "${NMAP_OUT}" "${NMAP_ERR}"
+        exec_with_timeout "${NMAP_BIN} -Pn --script +ssl-enum-ciphers ${NMAP_INETPROTO} ${HOST_ADDR} -p ${PORT}" "${NMAP_OUT}" "${NMAP_ERR}"
 
         if [ "${DEBUG}" -ge 1 ]; then
             debuglog 'nmap output:'


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/check_ssl_cert.1 → check_ssl_cert/check_ssl_cert_2.27.0/check_ssl_cert.1
=====================================
@@ -1,7 +1,7 @@
 .\" Process this file with
 .\" groff -man -Tascii check_ssl_cert.1
 .\"
-.TH "check_ssl_cert" 1 "April, 2022" "2.26.0" "USER COMMANDS"
+.TH "check_ssl_cert" 1 "April, 2022" "2.27.0" "USER COMMANDS"
 .SH NAME
 check_ssl_cert \- checks the validity of X.509 certificates
 .SH SYNOPSIS


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/check_ssl_cert.completion → check_ssl_cert/check_ssl_cert_2.27.0/check_ssl_cert.completion
=====================================


=====================================
check_ssl_cert/check_ssl_cert_2.26.0/check_ssl_cert.spec → check_ssl_cert/check_ssl_cert_2.27.0/check_ssl_cert.spec
=====================================
@@ -1,4 +1,4 @@
-%global version          2.26.0
+%global version          2.27.0
 %global release          0
 %global sourcename       check_ssl_cert
 %global packagename      nagios-plugins-check_ssl_cert
@@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT
 %endif
 
 %changelog
+* Thu Apr  28 2022 Matteo Corti <matteo at corti.li> - 2.27.0-0
+- Updated to 2.27.0
+
 * Thu Apr  28 2022 Matteo Corti <matteo at corti.li> - 2.26.0-0
 - Updated to 2.26.0
 


=====================================
check_ssl_cert/control
=====================================
@@ -1,7 +1,7 @@
 Uploaders: Jan Wagner <waja at cyconet.org>
 Recommends: curl, file, openssl
 Suggests: expect, iproute2, dnsutils
-Version: 2.15.0
+Version: 2.27.0
 Homepage: https://github.com/matteocorti/check_ssl_cert
 Watch: https://github.com/matteocorti/check_ssl_cert/releases check_ssl_cert-([0-9.]+)\.tar\.gz
 Description: plugin to check the CA and validity of an


=====================================
check_ssl_cert/src
=====================================
@@ -1 +1 @@
-check_ssl_cert_2.26.0/
\ No newline at end of file
+check_ssl_cert_2.27.0/
\ No newline at end of file



View it on GitLab: https://salsa.debian.org/nagios-team/pkg-nagios-plugins-contrib/-/commit/7f92189a7fd20f1282cbec64a26ba92e9b0841fe

-- 
View it on GitLab: https://salsa.debian.org/nagios-team/pkg-nagios-plugins-contrib/-/commit/7f92189a7fd20f1282cbec64a26ba92e9b0841fe
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/20220502/cb6bbf5b/attachment-0001.htm>


More information about the pkg-nagios-changes mailing list