summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcertrenew2
1 files changed, 1 insertions, 1 deletions
diff --git a/certrenew b/certrenew
index 0d60ef6..7691eae 100755
--- a/certrenew
+++ b/certrenew
@@ -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