mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00: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:
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user