mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Fixed backup file behavior in check mode (#24899)
Fixes ansible/ansible#21523
This commit is contained in:
@@ -752,12 +752,11 @@ 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)
|
||||
os.unlink(backup_file)
|
||||
|
||||
if cron_file:
|
||||
res_args['cron_file'] = cron_file
|
||||
|
||||
Reference in New Issue
Block a user