From fef1ca08c56d8b0c3530f861cca3982ad4bab619 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 30 Oct 2016 11:48:27 -0400 Subject: [PATCH] Changing name of cron job to be consistent with other yunohost crons, as requested by @opi --- 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 9a3c564b0..19e9cea38 100644 --- a/src/yunohost/certificate.py +++ b/src/yunohost/certificate.py @@ -294,7 +294,7 @@ def certificate_renew(auth, domain_list, force=False, no_checks=False, email=Fal ############################################################################### def _install_cron(): - cron_job_file = "/etc/cron.weekly/certificateRenewer" + cron_job_file = "/etc/cron.weekly/yunohost-certificate-renew" with open(cron_job_file, "w") as f: f.write("#!/bin/bash\n")