mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
fix case in which file is created and backup is requested but fails, not it just doesn't attempt to backup the missing file
Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
This commit is contained in:
@@ -143,7 +143,7 @@ def present(module, dest, regexp, line, insertafter, create, backup):
|
|||||||
changed = True
|
changed = True
|
||||||
|
|
||||||
if changed:
|
if changed:
|
||||||
if backup:
|
if backup and os.path.exists(dest):
|
||||||
module.backup_local(dest)
|
module.backup_local(dest)
|
||||||
f = open(dest, 'wb')
|
f = open(dest, 'wb')
|
||||||
f.writelines(lines)
|
f.writelines(lines)
|
||||||
|
|||||||
Reference in New Issue
Block a user