From 5d9d87f20d9003e8f5bf49fda4132269b8dd6434 Mon Sep 17 00:00:00 2001 From: Kload Date: Sun, 7 Jul 2013 12:01:56 +0200 Subject: [PATCH] bugfix --- yunohost_dyndns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yunohost_dyndns.py b/yunohost_dyndns.py index 5d6cdb5c..63554e7a 100644 --- a/yunohost_dyndns.py +++ b/yunohost_dyndns.py @@ -144,7 +144,7 @@ def dyndns_installcron(): """ os.system("touch /etc/cron.d/yunohost-dyndns") - os.system("echo '*/30 * * * * root yunohost dyndns update -u >>/dev/null' >/etc/cron.d/yunohost-dyndns") + os.system("echo '*/30 * * * * root yunohost dyndns update >> /dev/null' >/etc/cron.d/yunohost-dyndns") win_msg(_("DynDNS cron installed"))