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

pull/69898/head
the-antz 4 years ago committed by GitHub
parent a02960f506
commit 66bd385f6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -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'),

Loading…
Cancel
Save