reverse order of cron commands

does not affect linux but fixes issue with busybox caring about order
fixes #2807
pull/18777/head
Brian Coca 9 years ago committed by Matt Clay
parent 821fb6c0ab
commit 4c6515e299

@ -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)) 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: else:
user = '-u %s' % pipes.quote(self.user) 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)

Loading…
Cancel
Save