Skip to content
Snippets Groups Projects
Commit a9736a6f authored by Bob Mottram's avatar Bob Mottram
Browse files

Include key

parent e4d90941
No related branches found
No related tags found
No related merge requests found
...@@ -46,10 +46,12 @@ function show_help { ...@@ -46,10 +46,12 @@ function show_help {
function renew_startssl { function renew_startssl {
echo "Renewing Let's Encrypt certificate" echo "Renewing Let's Encrypt certificate"
letsencrypt renew --cert-path /etc/ssl/certs/$HOSTNAME.pem letsencrypt renew \
if [ ! "$?" = "0" ]; then --cert-path /etc/ssl/certs/$HOSTNAME.crt \
echo "Unable to renew Let's encrypt certificate" --key-path /etc/ssl/private/$HOSTNAME.key
fi if [ ! "$?" = "0" ]; then
echo "Unable to renew Let's encrypt certificate"
fi
} }
function renew_startssl { function renew_startssl {
...@@ -192,11 +194,11 @@ fi ...@@ -192,11 +194,11 @@ fi
if [[ $PROVIDER == 'startssl' || $PROVIDER == 'StartSSL' ]]; then if [[ $PROVIDER == 'startssl' || $PROVIDER == 'StartSSL' ]]; then
renew_startssl renew_startssl
else else
if [[ $PROVIDER == 'letsencrypt' ]]; then if [[ $PROVIDER == 'letsencrypt' ]]; then
renew_letsencrypt renew_letsencrypt
else else
echo "$PROVIDER is not currently supported" echo "$PROVIDER is not currently supported"
fi fi
fi fi
exit 0 exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment