mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Fix copy to only follow symlinks for files in the non-recursive case
Revert "**Temporary**"
This reverts commit 28b86b1148
.
We don't need this now that copy has been fixed
This commit is contained in:
parent
9e028ab704
commit
f332151f59
5 changed files with 66 additions and 18 deletions
|
@ -182,7 +182,7 @@ def main():
|
|||
original_basename=dict(required=False), # Internal use only, for recursive ops
|
||||
recurse=dict(default=False, type='bool'),
|
||||
force=dict(required=False, default=False, type='bool'),
|
||||
follow=dict(required=False, default=False, type='bool'),
|
||||
follow=dict(required=False, default=True, type='bool'),
|
||||
diff_peek=dict(default=None), # Internal use only, for internal checks in the action plugins
|
||||
validate=dict(required=False, default=None), # Internal use only, for template and copy
|
||||
src=dict(required=False, default=None, type='path'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue