Commit 7d12154a authored by David Wilson's avatar David Wilson

ansible: fix formatting

parent 089f3971
...@@ -157,16 +157,22 @@ class Connection(ansible.plugins.connection.ConnectionBase): ...@@ -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):
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment