diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-06-29 11:55:51 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-06-29 11:55:51 +0200 |
commit | 16d5a5613ab75d8d75e40785f305cbcf29c455fe (patch) | |
tree | 805e1c8020b930b023e8bbbbf08772f93d103b3a /certrenew | |
parent | e00c777b87f847c03c0110c9c58b34cca7151d28 (diff) | |
download | bin-16d5a5613ab75d8d75e40785f305cbcf29c455fe.tar.gz bin-16d5a5613ab75d8d75e40785f305cbcf29c455fe.tar.xz |
certrenew: Use new executable name
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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 |