summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/system/cron.py
diff options
context:
space:
mode:
authorSam Doran <sdoran@redhat.com>2019-09-18 19:04:26 -0400
committeransibot <ansibot@users.noreply.github.com>2019-09-18 19:04:26 -0400
commitb7897e3a8de5e7b8d4624e933bb28900a46ab773 (patch)
treed279a1778e4a4665366c832da9589debb423b80b /lib/ansible/modules/system/cron.py
parent064e443ea597359f3abb087aae6ee1ae4836f265 (diff)
downloadansible-b7897e3a8de5e7b8d4624e933bb28900a46ab773.tar.gz
cron - Only run get_bin_path() once (#62554)
Diffstat (limited to 'lib/ansible/modules/system/cron.py')
-rw-r--r--lib/ansible/modules/system/cron.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/ansible/modules/system/cron.py b/lib/ansible/modules/system/cron.py
index 4f2cc6393c..dfad4faa19 100644
--- a/lib/ansible/modules/system/cron.py
+++ b/lib/ansible/modules/system/cron.py
@@ -235,6 +235,7 @@ class CronTab(object):
self.lines = None
self.ansible = "#Ansible: "
self.existing = ''
+ self.cron_cmd = self.module.get_bin_path('crontab', required=True)
if cron_file:
if os.path.isabs(cron_file):
@@ -509,30 +510,29 @@ class CronTab(object):
Returns the command line for reading a crontab
"""
user = ''
- cron_cmd = self.module.get_bin_path('crontab', required=True)
if self.user:
if platform.system() == 'SunOS':
- return "su %s -c '%s -l'" % (shlex_quote(self.user), shlex_quote(cron_cmd))
+ return "su %s -c '%s -l'" % (shlex_quote(self.user), shlex_quote(self.cron_cmd))
elif platform.system() == 'AIX':
- return "%s -l %s" % (shlex_quote(cron_cmd), shlex_quote(self.user))
+ return "%s -l %s" % (shlex_quote(self.cron_cmd), shlex_quote(self.user))
elif platform.system() == 'HP-UX':
- return "%s %s %s" % (cron_cmd, '-l', shlex_quote(self.user))
+ return "%s %s %s" % (self.cron_cmd, '-l', shlex_quote(self.user))
elif pwd.getpwuid(os.getuid())[0] != self.user:
user = '-u %s' % shlex_quote(self.user)
- return "%s %s %s" % (cron_cmd, user, '-l')
+ return "%s %s %s" % (self.cron_cmd, user, '-l')
def _write_execute(self, path):
"""
Return the command line for writing a crontab
"""
- cron_cmd = self.module.get_bin_path('crontab', required=True)
user = ''
if self.user:
if platform.system() in ['SunOS', 'HP-UX', 'AIX']:
- return "chown %s %s ; su '%s' -c '%s %s'" % (shlex_quote(self.user), shlex_quote(path), shlex_quote(self.user), cron_cmd, shlex_quote(path))
+ return "chown %s %s ; su '%s' -c '%s %s'" % (
+ shlex_quote(self.user), shlex_quote(path), shlex_quote(self.user), self.cron_cmd, shlex_quote(path))
elif pwd.getpwuid(os.getuid())[0] != self.user:
user = '-u %s' % shlex_quote(self.user)
- return "%s %s %s" % (cron_cmd, user, shlex_quote(path))
+ return "%s %s %s" % (self.cron_cmd, user, shlex_quote(path))
def main():