From d85c0e0fbcb0ce109bb59e4dc8f0cedece24c468 Mon Sep 17 00:00:00 2001 From: Ian Kelling Date: Tue, 12 Oct 2021 06:04:41 -0400 Subject: [PATCH] move test earlier to avoid unneeded ssh --- vpn-mk-client-cert | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/vpn-mk-client-cert b/vpn-mk-client-cert index 014008d..46d9dba 100755 --- a/vpn-mk-client-cert +++ b/vpn-mk-client-cert @@ -127,8 +127,25 @@ else keydir=/etc/openvpn/client fi -port=$(echo '/^port/ {print $2}' | ssh $ssh_arg root@$host awk -f - /etc/openvpn/server/$name.conf | tail -n1) +if ! $force; then + cert_to_test=$f + if [[ $client_host ]]; then + cert_to_test=$(mktemp) + ssh $ssh_arg root@$client_host cat $f 2>/dev/null >$cert_to_test ||: + fi + if openssl x509 -checkend $(( 60 * 60 * 24 * 30 )) -noout -in $cert_to_test &>/dev/null; then + if [[ $client_host ]]; then + prefix="$shell" + fi + if $prefix test -s $keydir/ta-$name.key -a -s $keydir/ca-$name.crt; then + echo "$0: cert already exists. exiting early" + fi + exit 0 + fi +fi + +port=$(echo '/^port/ {print $2}' | ssh $ssh_arg root@$host awk -f - /etc/openvpn/server/$name.conf | tail -n1) $shell "dd of=$keydir/$name.conf" </dev/null >$cert_to_test ||: -fi -if ! $force && openssl x509 -checkend $(( 60 * 60 * 24 * 30 )) -noout -in $cert_to_test &>/dev/null; then - if [[ $client_host ]]; then - prefix="$shell" - fi - if $prefix test -s $keydir/ta-$name.key -a -s $keydir/ca-$name.crt; then - echo "$0: cert already exists. exiting early" - fi - exit 0 -fi - if ! $rel; then dirarg="-C $keydir" fi -- 2.30.2