Template sudo_user via with_items
This commit is contained in:
parent
f7cbf66d48
commit
dec364ae80
1 changed files with 5 additions and 5 deletions
|
@ -171,7 +171,8 @@ class Runner(object):
|
||||||
self.private_key_file = private_key_file
|
self.private_key_file = private_key_file
|
||||||
self.background = background
|
self.background = background
|
||||||
self.sudo = sudo
|
self.sudo = sudo
|
||||||
self.sudo_user = sudo_user
|
self.sudo_user_var = sudo_user
|
||||||
|
self.sudo_user = None
|
||||||
self.sudo_pass = sudo_pass
|
self.sudo_pass = sudo_pass
|
||||||
self.is_playbook = is_playbook
|
self.is_playbook = is_playbook
|
||||||
self.environment = environment
|
self.environment = environment
|
||||||
|
@ -431,10 +432,6 @@ class Runner(object):
|
||||||
if self.inventory.src() is not None:
|
if self.inventory.src() is not None:
|
||||||
inject['inventory_file'] = self.inventory.src()
|
inject['inventory_file'] = self.inventory.src()
|
||||||
|
|
||||||
# late processing of parameterized sudo_user
|
|
||||||
if self.sudo_user is not None:
|
|
||||||
self.sudo_user = template.template(self.basedir, self.sudo_user, inject)
|
|
||||||
|
|
||||||
# allow with_foo to work in playbooks...
|
# allow with_foo to work in playbooks...
|
||||||
items = None
|
items = None
|
||||||
items_plugin = self.module_vars.get('items_lookup_plugin', None)
|
items_plugin = self.module_vars.get('items_lookup_plugin', None)
|
||||||
|
@ -527,6 +524,9 @@ class Runner(object):
|
||||||
def _executor_internal_inner(self, host, module_name, module_args, inject, port, is_chained=False, complex_args=None):
|
def _executor_internal_inner(self, host, module_name, module_args, inject, port, is_chained=False, complex_args=None):
|
||||||
''' decides how to invoke a module '''
|
''' decides how to invoke a module '''
|
||||||
|
|
||||||
|
# late processing of parameterized sudo_user (with_items,..)
|
||||||
|
if self.sudo_user_var is not None:
|
||||||
|
self.sudo_user = template.template(self.basedir, self.sudo_user_var, inject)
|
||||||
|
|
||||||
# allow module args to work as a dictionary
|
# allow module args to work as a dictionary
|
||||||
# though it is usually a string
|
# though it is usually a string
|
||||||
|
|
Loading…
Reference in a new issue