reverse order of cron commands

does not affect linux but fixes issue with busybox caring about order
fixes #2807
This commit is contained in:
Brian Coca 2016-01-15 15:00:40 -05:00 committed by Matt Clay
parent 821fb6c0ab
commit 4c6515e299

View file

@ -380,7 +380,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)