From 77ccf9766702ab6ed422f9c3302174448fb4ae73 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 3 Dec 2018 23:58:35 +0100 Subject: [PATCH] WIP. --- .../linkable_etc_files/web/etc/cron.d/certbot | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 all_new_2018/linkable_etc_files/web/etc/cron.d/certbot diff --git a/all_new_2018/linkable_etc_files/web/etc/cron.d/certbot b/all_new_2018/linkable_etc_files/web/etc/cron.d/certbot new file mode 100644 index 0000000..e70c4fa --- /dev/null +++ b/all_new_2018/linkable_etc_files/web/etc/cron.d/certbot @@ -0,0 +1,13 @@ +# /etc/cron.d/certbot: crontab entries for the certbot package +# +# Upstream recommends attempting renewal twice a day +# +# Eventually, this will be an opportunity to validate certificates +# haven't been revoked, etc. Renewal will only occur if expiration +# is within 30 days. +SHELL=/bin/sh +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin + +# plomlompom added the --webroot -w /var/www/html/ so that renewal +# works with nginx running. +0 */12 * * * root test -x /usr/bin/certbot -a \! -d /run/systemd/system && perl -e 'sleep int(rand(3600))' && certbot -q renew --webroot -w /var/www/html/ -- 2.30.2