6 lines
337 B
Bash
6 lines
337 B
Bash
echo "Running certbot renew" > /root/scripts/certbot.log
|
|
/bin/certbot renew >> /root/scripts/certbot.log
|
|
echo "Finished certbot renew" >> /root/scripts/certbot.log
|
|
echo "Copying certs to /secure" >> /root/scripts/certbot.log
|
|
cp -rL /etc/letsencrypt/live/* /secure/certs/
|
|
echo "Done copying certs to /secure" >> /root/scripts/certbot.log
|