From 1b20899f0efeb81f945f28fce83f77e5d0afb5f0 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 24 Nov 2016 10:40:01 -0500 Subject: [PATCH] Daily renew cron job instead of weekly --- src/yunohost/certificate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/certificate.py b/src/yunohost/certificate.py index d9110b79b..81f2f0e2b 100644 --- a/src/yunohost/certificate.py +++ b/src/yunohost/certificate.py @@ -379,7 +379,7 @@ def _check_old_letsencrypt_app(): def _install_cron(): - cron_job_file = "/etc/cron.weekly/yunohost-certificate-renew" + cron_job_file = "/etc/cron.daily/yunohost-certificate-renew" with open(cron_job_file, "w") as f: f.write("#!/bin/bash\n")