summaryrefslogtreecommitdiffstats
path: root/certrenew
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-06-29 11:55:51 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-06-29 11:55:51 +0200
commit16d5a5613ab75d8d75e40785f305cbcf29c455fe (patch)
tree805e1c8020b930b023e8bbbbf08772f93d103b3a /certrenew
parente00c777b87f847c03c0110c9c58b34cca7151d28 (diff)
downloadbin-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-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