mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-29 03:30:22 -07:00
Merge branch 'devel' of https://github.com/muffl0n/ansible into muffl0n-devel
This commit is contained in:
commit
e659d55d62
3 changed files with 6 additions and 6 deletions
|
@ -48,9 +48,9 @@ class ActionModule(object):
|
|||
if complex_args:
|
||||
options.update(complex_args)
|
||||
options.update(utils.parse_kv(module_args))
|
||||
source = options.get('src', None)
|
||||
source = os.path.expanduser(options.get('src', None))
|
||||
content = options.get('content', None)
|
||||
dest = options.get('dest', None)
|
||||
dest = os.path.expanduser(options.get('dest', None))
|
||||
raw = utils.boolean(options.get('raw', 'no'))
|
||||
force = utils.boolean(options.get('force', 'yes'))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue