mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-03 23:14:02 -07:00
Add support to directly set content in copy module
This commit is contained in:
parent
4da04b2176
commit
c7c7a63ee5
2 changed files with 37 additions and 5 deletions
12
library/copy
12
library/copy
|
@ -31,10 +31,15 @@ description:
|
|||
options:
|
||||
src:
|
||||
description:
|
||||
- Local path to a file to copy to the remote server; can be absolute or relative.
|
||||
required: true
|
||||
- Local path to a file to copy to the remote server; can be absolute or relative. Mutually exclusive with content.
|
||||
required: false
|
||||
default: null
|
||||
aliases: []
|
||||
content:
|
||||
description:
|
||||
- Creates and/or set content of a file on the remote server. Mutually exclusive with content.
|
||||
required: false
|
||||
default: null
|
||||
dest:
|
||||
description:
|
||||
- Remote absolute path where the file should be copied to.
|
||||
|
@ -76,7 +81,8 @@ def main():
|
|||
module = AnsibleModule(
|
||||
# not checking because of daisy chain to file module
|
||||
argument_spec = dict(
|
||||
src=dict(required=True),
|
||||
src=dict(required=False),
|
||||
content=dict(required=False),
|
||||
dest=dict(required=True),
|
||||
backup=dict(default=False, type='bool'),
|
||||
force = dict(default='yes', aliases=['thirsty'], type='bool'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue