mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fix case where destination does not yet exist - no backup can be made
This commit is contained in:
parent
28e9b1128f
commit
588b129018
1 changed files with 6 additions and 5 deletions
|
@ -75,6 +75,7 @@ def main():
|
||||||
if md5sum_src != md5sum_dest:
|
if md5sum_src != md5sum_dest:
|
||||||
try:
|
try:
|
||||||
if backup:
|
if backup:
|
||||||
|
if os.path.exists(dest):
|
||||||
success, msg = backuplocal(dest)
|
success, msg = backuplocal(dest)
|
||||||
if not success:
|
if not success:
|
||||||
module.fail_jason(msg=msg)
|
module.fail_jason(msg=msg)
|
||||||
|
|
Loading…
Reference in a new issue