Compare commits

...

2 Commits

Author SHA1 Message Date
Paolo Asperti 5eaede5ca8
typo
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
2024-01-25 08:26:43 +01:00
Paolo Asperti 83d15f9436
Merge branch 'master' of ssh://git.asperti.com:1022/paspo/docker-ftps 2024-01-24 00:29:56 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ TLS_CHAIN=/acme/cert/chain.pem
[ ! -f "$TLS_CHAIN" ] && exit 1
############ CHECK CERT KEY ALGO
ALGO=$(openssl x509 -in "$TLS_CERT"-text | sed -n 's/\ *Public Key Algorithm: //p' | tr '\n')
ALGO=$(openssl x509 -in "$TLS_CERT" -text | sed -n 's/\ *Public Key Algorithm: //p' | tr '\n')
############ UPDATE cert config if needed
if [ "$ALGO" = "id-ecPublicKey" ] ; then

View File

@ -11,7 +11,7 @@ TLS_CHAIN=/acme/cert/chain.pem
[ ! -f "$TLS_CHAIN" ] && exit 1
############ CHECK CERT KEY ALGO
ALGO=$(openssl x509 -in "$TLS_CERT"-text | sed -n 's/\ *Public Key Algorithm: //p' | tr '\n')
ALGO=$(openssl x509 -in "$TLS_CERT" -text | sed -n 's/\ *Public Key Algorithm: //p' | tr '\n')
############ UPDATE cert config if needed
if [ "$ALGO" = "id-ecPublicKey" ] ; then