blob: 03273a85f0e0a0f741c080a74f803bd5296ba4d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#/bin/sh
set -e
for domain in $RENEWED_DOMAINS; do
case $domain in
znc.th73.ovh)
cat /etc/letsencrypt/live/znc.th73.ovh/{privkey.pem,cert.pem,chain.pem} > /var/lib/znc/.znc/znc.pem
;;
esac
done
|