remove one ignore clause for module copy (#83643)

---------
Co-authored-by: flowerysong <junk+github@flowerysong.com>
pull/84042/head
Alexei Znamensky 2 months ago committed by GitHub
parent 4c8fb12fc2
commit bebc192c3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,3 @@
minor_changes:
- copy - parameter ``local_follow`` was incorrectly documented as having default value ``True`` (https://github.com/ansible/ansible/pull/83643).
- copy - fix sanity test failures (https://github.com/ansible/ansible/pull/83643).

@ -109,7 +109,6 @@ options:
description: description:
- This flag indicates that filesystem links in the source tree, if they exist, should be followed. - This flag indicates that filesystem links in the source tree, if they exist, should be followed.
type: bool type: bool
default: yes
version_added: '2.4' version_added: '2.4'
checksum: checksum:
description: description:
@ -516,7 +515,7 @@ def main():
force=dict(type='bool', default=True), force=dict(type='bool', default=True),
validate=dict(type='str'), validate=dict(type='str'),
directory_mode=dict(type='raw'), directory_mode=dict(type='raw'),
remote_src=dict(type='bool'), remote_src=dict(type='bool', default=False),
local_follow=dict(type='bool'), local_follow=dict(type='bool'),
checksum=dict(type='str'), checksum=dict(type='str'),
follow=dict(type='bool', default=False), follow=dict(type='bool', default=False),

@ -13,7 +13,6 @@ lib/ansible/modules/command.py validate-modules:doc-default-does-not-match-spec
lib/ansible/modules/command.py validate-modules:doc-missing-type lib/ansible/modules/command.py validate-modules:doc-missing-type
lib/ansible/modules/command.py validate-modules:nonexistent-parameter-documented lib/ansible/modules/command.py validate-modules:nonexistent-parameter-documented
lib/ansible/modules/command.py validate-modules:undocumented-parameter lib/ansible/modules/command.py validate-modules:undocumented-parameter
lib/ansible/modules/copy.py validate-modules:doc-default-does-not-match-spec
lib/ansible/modules/copy.py validate-modules:nonexistent-parameter-documented lib/ansible/modules/copy.py validate-modules:nonexistent-parameter-documented
lib/ansible/modules/copy.py validate-modules:undocumented-parameter lib/ansible/modules/copy.py validate-modules:undocumented-parameter
lib/ansible/modules/dnf.py validate-modules:parameter-invalid lib/ansible/modules/dnf.py validate-modules:parameter-invalid

Loading…
Cancel
Save