From bff33afabbcbfe32413b723204a4602daf4d71a8 Mon Sep 17 00:00:00 2001 From: David Buscher Date: Sun, 12 Dec 2021 10:48:22 +0000 Subject: [PATCH] Changed cron timing to avoid clashes with other regular cron jobs --- src/yunohost/firewall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/firewall.py b/src/yunohost/firewall.py index e9d05b7e0..88b4dd7ba 100644 --- a/src/yunohost/firewall.py +++ b/src/yunohost/firewall.py @@ -338,7 +338,7 @@ def firewall_upnp(action="status", no_refresh=False): # Add cron job with open(UPNP_CRON_JOB, "w+") as f: f.write( - "*/10 * * * * root " + "*/12 * * * * root " "/usr/bin/yunohost firewall upnp status >>/dev/null\n" ) enabled = True