Compare commits
4 commits
1d44d8380b
...
5164b327f2
Author | SHA1 | Date | |
---|---|---|---|
5164b327f2 | |||
2236128a8d | |||
f0226d69c6 | |||
1f781ccf99 |
1 changed files with 18 additions and 0 deletions
|
@ -1,10 +1,26 @@
|
|||
#! /bin/bash
|
||||
#should probably add logic to only halt/reload once (and only if necessary)
|
||||
function halt() {
|
||||
#stop services if necessary
|
||||
if [ -d /var/lib/ipa/ ]
|
||||
#stop httpd
|
||||
systemctl stop httpd
|
||||
fi
|
||||
}
|
||||
function reload() {
|
||||
#reload/restart relevant services
|
||||
if [ -d /etc/nginx/certs/ ]
|
||||
then
|
||||
systemctl reload nginx
|
||||
fi
|
||||
if [ -d /var/lib/ipa/ ]
|
||||
#restart httpd
|
||||
systemctl start httpd
|
||||
/scripts/setup-le.sh
|
||||
systemctl restart httpd
|
||||
#load cert
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
dom=`date +%d`
|
||||
|
@ -21,6 +37,7 @@ do
|
|||
if [[ $today > $expires ]]
|
||||
then
|
||||
echo Certificate for $f is expired, renewing >> $log
|
||||
halt()
|
||||
certbot renew --cert-name $f >> /var/log/certbot-renewal.log
|
||||
reload()
|
||||
continue
|
||||
|
@ -34,6 +51,7 @@ do
|
|||
if [[ $dom -eq $rdate ]]
|
||||
then
|
||||
echo Date falls within renewal window for $f, attempting renewal >> $log
|
||||
halt()
|
||||
certbot renew --cert-name $f >> $log
|
||||
reload()
|
||||
break
|
||||
|
|
Loading…
Add table
Reference in a new issue