mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added variable expansion to task sudo_user parameter
This commit is contained in:
parent
fc8d9377d5
commit
c365974117
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class Task(object):
|
||||||
self.args = ds.get('args', {})
|
self.args = ds.get('args', {})
|
||||||
|
|
||||||
if self.sudo:
|
if self.sudo:
|
||||||
self.sudo_user = ds.get('sudo_user', play.sudo_user)
|
self.sudo_user = utils.template(play.basedir, ds.get('sudo_user', play.sudo_user), play.vars)
|
||||||
self.sudo_pass = ds.get('sudo_pass', play.playbook.sudo_pass)
|
self.sudo_pass = ds.get('sudo_pass', play.playbook.sudo_pass)
|
||||||
else:
|
else:
|
||||||
self.sudo_user = None
|
self.sudo_user = None
|
||||||
|
|
Loading…
Reference in a new issue