mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Template options sooner on complex args copy
This commit is contained in:
@@ -36,9 +36,9 @@ class ActionModule(object):
|
|||||||
if complex_args:
|
if complex_args:
|
||||||
options.update(complex_args)
|
options.update(complex_args)
|
||||||
options.update(utils.parse_kv(module_args))
|
options.update(utils.parse_kv(module_args))
|
||||||
|
options = utils.template(self.runner.basedir, options, inject)
|
||||||
source = options.get('src', None)
|
source = options.get('src', None)
|
||||||
dest = options.get('dest', None)
|
dest = options.get('dest', None)
|
||||||
options = utils.template(self.runner.basedir, options, inject)
|
|
||||||
module_args = self.runner._complex_args_hack(options, '')
|
module_args = self.runner._complex_args_hack(options, '')
|
||||||
|
|
||||||
if (source is None and not 'first_available_file' in inject) or dest is None:
|
if (source is None and not 'first_available_file' in inject) or dest is None:
|
||||||
|
|||||||
Reference in New Issue
Block a user