Fix documentation for the assemble modules remote_src property. (#69845)
This commit is contained in:
parent
a02960f506
commit
66bd385f6f
2 changed files with 4 additions and 2 deletions
2
changelogs/fragments/69845-doc-assemble-remote_src.yaml
Normal file
2
changelogs/fragments/69845-doc-assemble-remote_src.yaml
Normal 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.
|
|
@ -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…
Reference in a new issue