From 7a0b4882449f1c9730425f0055f9a1e664e7d13b Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 15 Jan 2016 15:00:40 -0500 Subject: [PATCH] reverse order of cron commands does not affect linux but fixes issue with busybox caring about order fixes #2807 --- system/cron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/cron.py b/system/cron.py index c9023845b29..28fe8a7c939 100644 --- a/system/cron.py +++ b/system/cron.py @@ -383,7 +383,7 @@ class CronTab(object): return "chown %s %s ; su '%s' -c '%s %s'" % (pipes.quote(self.user), pipes.quote(path), pipes.quote(self.user), CRONCMD, pipes.quote(path)) else: user = '-u %s' % pipes.quote(self.user) - return "%s %s %s" % (CRONCMD , user, pipes.quote(path)) + return "%s %s %s" % (CRONCMD , pipes.quote(path), user)