ansible: fix formatting
This commit is contained in:
parent
089f39716e
commit
7d12154a92
|
@ -157,16 +157,22 @@ class Connection(ansible.plugins.connection.ConnectionBase):
|
||||||
Parent Context of the sudo Context. For Ansible, this should always
|
Parent Context of the sudo Context. For Ansible, this should always
|
||||||
be a Context returned by _connect_ssh().
|
be a Context returned by _connect_ssh().
|
||||||
"""
|
"""
|
||||||
return mitogen.service.call(self.parent, ContextService.handle, cast({
|
return mitogen.service.call(
|
||||||
|
self.parent,
|
||||||
|
ContextService.handle,
|
||||||
|
cast({
|
||||||
'method': 'sudo',
|
'method': 'sudo',
|
||||||
'username': self._play_context.become_user,
|
'username': self._play_context.become_user,
|
||||||
'password': self._play_context.password,
|
'password': self._play_context.password,
|
||||||
'python_path': python_path or self.python_path,
|
'python_path': python_path or self.python_path,
|
||||||
'sudo_path': self.sudo_path,
|
'sudo_path': self.sudo_path,
|
||||||
'via': via,
|
'via': via,
|
||||||
'sudo_args': shlex.split(self._play_context.sudo_flags or
|
'sudo_args': shlex.split(
|
||||||
self._play_context.become_flags or ''),
|
self._play_context.sudo_flags or
|
||||||
}))
|
self._play_context.become_flags or ''
|
||||||
|
),
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
def _connect(self):
|
def _connect(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue