diff options
Diffstat (limited to 'certrenew')
-rwxr-xr-x | certrenew | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ main() { # renew if expires within 8 weeks if ! openssl x509 -noout -checkend $((8*7*86400)) -in "${cert}"; then - letsencrypt certonly --email bluewind@xinu.at --agree-tos --renew-by-default --webroot -w "$webroot" "${domains[@]/#/-d }" + certbot certonly --email bluewind@xinu.at --agree-tos --renew-by-default --webroot -w "$webroot" "${domains[@]/#/-d }" return 0 fi |