Enforce umask for cron module, so cron_file generated files are 0644.
Certain cron implementations get cranky if files in cron.* are group writable.
This commit is contained in:
parent
e1ff809d1a
commit
487aa9a1ec
1 changed files with 2 additions and 0 deletions
|
@ -426,6 +426,8 @@ def main():
|
|||
changed = False
|
||||
res_args = dict()
|
||||
|
||||
# Ensure all files generated are only writable by the owning user. Primarily relevant for the cron_file option.
|
||||
os.umask(022)
|
||||
crontab = CronTab(module, user, cron_file)
|
||||
|
||||
if crontab.syslogging:
|
||||
|
|
Loading…
Reference in a new issue