Fixed backup file behavior in check mode (#24899)

Fixes ansible/ansible#21523
pull/4420/head
Evan Kaufman 2017-05-26 07:16:15 -07:00 committed by René Moser
parent a1709bf0f9
commit ce584571e8
1 changed files with 2 additions and 3 deletions

View File

@ -752,11 +752,10 @@ def main():
res_args['diff'] = diff
# retain the backup only if crontab or cron file have changed
if backup:
if backup and not module.check_mode:
if changed:
res_args['backup_file'] = backup_file
else:
if not module.check_mode:
os.unlink(backup_file)
if cron_file: