mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
fix an issue that copying directory will fail when trying to change file attributes and the target file already exists on remote
- the issue was introduced by the commit 84759faa09
This commit is contained in:
parent
a21092d7c2
commit
1b1d5d0d3d
2 changed files with 8 additions and 1 deletions
|
@ -151,5 +151,11 @@
|
|||
# ignore_errors: True
|
||||
# register: failed_copy
|
||||
|
||||
- name: copy already copied directory again
|
||||
copy: src=subdir dest={{output_subdir | expanduser}} owner={{ansible_ssh_user}}
|
||||
register: copy_result5
|
||||
|
||||
|
||||
- name: assert that the directory was not changed
|
||||
assert:
|
||||
that:
|
||||
- "not copy_result5|changed"
|
Loading…
Add table
Add a link
Reference in a new issue