Fix documentation for the assemble modules remote_src property. (#69845)

This commit is contained in:
the-antz 2020-06-04 21:30:45 +02:00 committed by GitHub
parent a02960f506
commit 66bd385f6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- assemble module - fix documentation - the remote_src property specified a default value of no but it's actually yes.

View file

@ -55,7 +55,7 @@ options:
- If C(no), it will search for src at originating/master machine.
- If C(yes), it will go to the remote/target machine for the src.
type: bool
default: no
default: yes
version_added: '1.4'
regexp:
description:
@ -183,7 +183,7 @@ def main():
delimiter=dict(type='str'),
dest=dict(type='path', required=True),
backup=dict(type='bool', default=False),
remote_src=dict(type='bool', default=False),
remote_src=dict(type='bool', default=True),
regexp=dict(type='str'),
ignore_hidden=dict(type='bool', default=False),
validate=dict(type='str'),