ansible: fix become:true with sudo:true

wip-fakessh-exit-status
David Wilson 7 years ago
parent 83f2862431
commit 1b090a6c0a

@ -28,6 +28,7 @@
from __future__ import absolute_import from __future__ import absolute_import
import logging import logging
import os import os
import sys
import time import time
import ansible.errors import ansible.errors
@ -105,7 +106,7 @@ class Connection(ansible.plugins.connection.ConnectionBase):
}) })
) )
def _connect_sudo(self, via): def _connect_sudo(self, via=None, python_path=None):
""" """
Fetch a reference to a sudo Context matching the play context from Fetch a reference to a sudo Context matching the play context from
ContextService in the master process. ContextService in the master process.
@ -118,7 +119,7 @@ class Connection(ansible.plugins.connection.ConnectionBase):
'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': '/usr/bin/python', 'python_path': python_path or '/usr/bin/python',
'via': via, 'via': via,
})) }))
@ -140,7 +141,10 @@ class Connection(ansible.plugins.connection.ConnectionBase):
self.router, self.parent = mitogen.unix.connect(path) self.router, self.parent = mitogen.unix.connect(path)
if self.original_transport == 'local': if self.original_transport == 'local':
self.context = self._connect_local() if not self._play_context.become:
self.context = self._connect_local()
else:
self.context = self._connect_sudo(python_path=sys.executable)
else: else:
self.host = self._connect_ssh() self.host = self._connect_ssh()
if not self._play_context.become: if not self._play_context.become:

@ -1,7 +1,6 @@
[defaults] [defaults]
inventory = hosts inventory = hosts
strategy_plugins = ../../ansible_mitogen/strategy strategy_plugins = ../../ansible_mitogen/strategy
strategy = mitogen
retry_files_enabled = False retry_files_enabled = False
[ssh_connection] [ssh_connection]

Loading…
Cancel
Save