1
0
Fork 0
mirror of https://github.com/ThomasGsp/HyperProxmox.git synced 2025-02-15 04:32:15 +00:00
HyperProxmox/system/BASE_SOFT/LETSENCRYPT/scripts/renew.sh
thomas.guiseppin 5352a2b94a first commit
2017-10-21 22:04:42 +02:00

7 lines
158 B
Bash

#!/usr/bin/env bash
for SITE in $(ls /etc/letsencrypt/live/)
do
cd /etc/letsencrypt/live/$SITE
cat fullchain.pem privkey.pem > /opt/certbot/$SITE.pem
done