X-Git-Url: https://iankelling.org/git/?p=distro-setup;a=blobdiff_plain;f=certbot-renew-hook;h=ba1e68d0798388ae7556b8fba3b6d79a6adb0d5b;hp=70aa41893f38f4991cd5fea659e50aabc99ab623;hb=79b274fcd8bfa556133ab13270e84b40aebe8468;hpb=1ad20724a44a0ee3adc2f4a1d002850fbad7a372 diff --git a/certbot-renew-hook b/certbot-renew-hook index 70aa418..ba1e68d 100755 --- a/certbot-renew-hook +++ b/certbot-renew-hook @@ -26,8 +26,12 @@ for ((i=0; i<${#domain_user[@]}; i+=2)); do user=${domain_user[i+1]} d=/etc/letsencrypt/live/$domain - if [[ $RENEWED_LINEAGE == $d ]]; then + if [[ $RENEWED_LINEAGE == "$d" ]]; then install -m 640 -g $user $d/{privkey.pem,fullchain.pem} $(eval echo ~$user) exit 0 fi done + +if [[ $RENEWED_LINEAGE == /etc/letsencrypt/live/iankelling.org ]]; then + cat /etc/letsencrypt/live/iankelling.org/{privkey,cert,chain}.pem > /var/lib/znc/znc.pem +fi