From 690031f348961fce98cf6f76c88ad32516b46d9f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 31 Oct 2017 19:16:24 +1300 Subject: Bump version number to v0.1.0 Preparing for first "release" under experimental git-flow based model. --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index a86f84ca..85545e1d 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v0.0.0 -Thu Jan 1 00:00:00 UTC 1970 +tejr dotfiles v0.1.0 +Tue Oct 31 06:16:09 UTC 2017 -- cgit v1.2.3 From 952acc0a1c10f07d294fb730c4b9ecf92fa07ce0 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 31 Oct 2017 19:17:52 +1300 Subject: Remove -no_ssl2 from osc(1df) Modern OpenSSL builds, at least on Debian Stretch, don't even include this as an option anymore, because SSLv2 has been so broken for so long. There's not really much point trying to keep it. $ openssl version OpenSSL 1.1.0f 25 May 2017 $ openssl -no_ssl2 Invalid command '-no_ssl2'; type "help" for a list. --- bin/osc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/osc.sh b/bin/osc.sh index b145b5cd..47d62089 100644 --- a/bin/osc.sh +++ b/bin/osc.sh @@ -22,7 +22,7 @@ fi ## The actual openssl(1ssl) and subcommand call set -- "$@" openssl s_client ## No insecure SSL methods -set -- "$@" -no_ssl2 -no_ssl3 +set -- "$@" -no_ssl3 ## Don't dump nonsense to terminal, and don't renegotiate on R or quit on Q set -- "$@" -quiet ## But do cut the connection if I issue ^D, even though I just set -quiet -- cgit v1.2.3