[-]
[+]
|
Changed |
check_ssl_cert.changes
|
|
[-]
[+]
|
Changed |
check_ssl_cert.spec
^
|
|
[-]
[+]
|
Changed |
check_ssl_cert-1.16.1.tar.bz2/AUTHORS
^
|
@@ -32,6 +32,7 @@
* Many thanks to Christian Ruppert for the XMPP patch
* Many thanks to Robin H. Johnson for the 'timeout' patch
* Many thanks to Max Winterstein for the SSL version patch
+* Many thanks to Colin Smith for the RPM build Makefile patch
# File version information:
# $Id: AUTHORS 1103 2009-12-07 07:49:19Z corti $
|
[-]
[+]
|
Changed |
check_ssl_cert-1.16.1.tar.bz2/ChangeLog
^
|
@@ -1,3 +1,7 @@
+2014-02-28 Matteo Corti <matteo.corti@id.ethz.ch>
+
+ * Makefile: added a target to build an rpm
+
2013-12-23 Matteo Corti <matteo.corti@id.ethz.ch>
* check_ssl_cert: added the --tls1 option to force TLS 1
|
[-]
[+]
|
Changed |
check_ssl_cert-1.16.1.tar.bz2/Makefile
^
|
@@ -27,11 +27,17 @@
clean:
rm -f *~
+ rm -rf rpmroot
test:
( cd test && ./unit_tests.sh )
-.PHONY: install clean test
+rpm: dist
+ mkdir -p rpmroot/SOURCES rpmroot/BUILD
+ cp $(DIST_DIR).tar.gz rpmroot/SOURCES
+ rpmbuild --define "_topdir `pwd`/rpmroot" -ba check_ssl_cert.spec
+
+.PHONY: install clean test rpm
# File version information:
# $Id: AUTHORS 1103 2009-12-07 07:49:19Z corti $
|
[-]
[+]
|
Changed |
check_ssl_cert-1.16.1.tar.bz2/NEWS
^
|
@@ -1,3 +1,4 @@
+2014-02-28 Version 1.16.1 Added a Make target for the RPM package
2013-12-23 Version 1.16.0 Added an option to force TLS version 1
2013-07-29 Version 1.15.0 Added an option to force a certain SSL version (thanks
to Max Winterstein)
|
[-]
[+]
|
Changed |
check_ssl_cert-1.16.1.tar.bz2/VERSION
^
|
@@ -1 +1 @@
-1.16.0
+1.16.1
|
[-]
[+]
|
Changed |
check_ssl_cert-1.16.1.tar.bz2/check_ssl_cert
^
|
@@ -19,15 +19,15 @@
# enable substitution with:
# $ svn propset svn:keywords "Id Revision HeadURL Source Date"
#
-# $Id: check_ssl_cert 1348 2013-12-23 08:07:44Z corti $
-# $Revision: 1348 $
+# $Id: check_ssl_cert 1353 2014-02-28 10:32:11Z corti $
+# $Revision: 1353 $
# $HeadURL: https://svn.id.ethz.ch/nagios_plugins/check_ssl_cert/check_ssl_cert $
-# $Date: 2013-12-23 09:07:44 +0100 (Mon, 23 Dec 2013) $
+# $Date: 2014-02-28 11:32:11 +0100 (Fri, 28 Feb 2014) $
################################################################################
# Constants
-VERSION=1.16.0
+VERSION=1.16.1
SHORTNAME="SSL_CERT"
VALID_ATTRIBUTES=",startdate,enddate,subject,issuer,modulus,serial,hash,email,ocsp_uri,fingerprint,"
|
[-]
[+]
|
Changed |
check_ssl_cert-1.16.1.tar.bz2/check_ssl_cert.1
^
|
@@ -1,7 +1,7 @@
.\" Process this file with
.\" groff -man -Tascii foo.1
.\"
-.TH "check_ssl_cert" 1 "May, 2013" "1.16.0" "USER COMMANDS"
+.TH "check_ssl_cert" 1 "May, 2013" "1.16.1" "USER COMMANDS"
.SH NAME
check_ssl_cert \- checks the validity of X.509 certificates
.SH SYNOPSIS
|
[-]
[+]
|
Changed |
check_ssl_cert-1.16.1.tar.bz2/check_ssl_cert.spec
^
|
@@ -6,7 +6,7 @@
# $Date: 2010-02-16 21:06:11 +0100 (Tue, 16 Feb 2010) $
################################################################################
-%define version 1.16.0
+%define version 1.16.1
%define release 0
%define sourcename check_ssl_cert
%define packagename nagios-plugins-check_ssl_cert
@@ -53,6 +53,9 @@
%{_mandir}/man1/%{sourcename}.1*
%changelog
+* Fri Feb 28 2014 Matteo Corti <matteo.corti@id.ethz.ch> - 1.16.1-0
+- Updated to 1.16.1 (rpm make target)
+
* Mon Dec 23 2013 Matteo Corti <matteo.corti@id.ethz.ch> - 1.16.0-0
- Udated to 1.16.0 (force TLS)
|