Skip to content

Commit

Permalink
ansible: Respect interpreter_python config variable
Browse files Browse the repository at this point in the history
  • Loading branch information
extmind committed Apr 29, 2021
1 parent 36f3e3b commit bab22aa
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
7 changes: 4 additions & 3 deletions ansible_mitogen/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def get_task_var(self, key, default=None):
does not make sense to extract connection-related configuration for the
delegated-to machine from them.
"""
def _fetch_task_var(task_vars, key):
def _fetch_task_var(task_vars, key, default):
"""
Special helper func in case vars can be templated
"""
Expand All @@ -641,15 +641,16 @@ def _fetch_task_var(task_vars, key):
escape_backslashes=False
)
return val
return default

task_vars = self._get_task_vars()
if self.delegate_to_hostname is None:
return _fetch_task_var(task_vars, key)
return _fetch_task_var(task_vars, key, default)
else:
delegated_vars = task_vars['ansible_delegated_vars']
if self.delegate_to_hostname in delegated_vars:
task_vars = delegated_vars[self.delegate_to_hostname]
return _fetch_task_var(task_vars, key)
return _fetch_task_var(task_vars, key, default)

return default

Expand Down
8 changes: 6 additions & 2 deletions ansible_mitogen/transport_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,9 @@ def port(self):
return self._play_context.port

def python_path(self, rediscover_python=False):
s = self._connection.get_task_var('ansible_python_interpreter')
s = self._connection.get_task_var('ansible_python_interpreter',
default=C.config.get_config_value('INTERPRETER_PYTHON',
variables=self._task_vars))
# #511, #536: executor/module_common.py::_get_shebang() hard-wires
# "/usr/bin/python" as the default interpreter path if no other
# interpreter is specified.
Expand Down Expand Up @@ -660,7 +662,9 @@ def port(self):
)

def python_path(self, rediscover_python=False):
s = self._host_vars.get('ansible_python_interpreter')
s = self._host_vars.get('ansible_python_interpreter',
default=C.config.get_config_value('INTERPRETER_PYTHON',
variables=self._task_vars))
# #511, #536: executor/module_common.py::_get_shebang() hard-wires
# "/usr/bin/python" as the default interpreter path if no other
# interpreter is specified.
Expand Down
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ This release separates itself from the v0.2.X releases. Ansible's API changed to
* :gh:issue:`770` better check for supported Ansible version
* :gh:issue:`731` ansible 2.10 support
* :gh:issue:`652` support for ansible collections import hook
* :gh:issue:`740` respect `interpreter_python` global configuration variable


v0.2.10 (unreleased)
Expand Down

0 comments on commit bab22aa

Please sign in to comment.