Compare commits

...

1 commit

Author SHA1 Message Date
Brian Coca 5b30f539b0 Revert "Skip interpreter discovery for network OSs(#74012)"
This reverts commit 173d0a8de7.
2021-05-14 16:46:01 -04:00
2 changed files with 0 additions and 8 deletions

View file

@ -1,2 +0,0 @@
bugfixes:
- interpreter discovery is now handling special (ansible_network_os) cases in less noisy ways.

View file

@ -539,12 +539,6 @@ class TaskExecutor:
plugin_vars = self._set_connection_options(cvars, templar)
templar.available_variables = orig_vars
# TODO: eventually remove this block as this should be a 'consequence' of 'forced_local' modules
# special handling for python interpreter for network_os, default to ansible python unless overriden
if 'ansible_network_os' in cvars and 'ansible_python_interpreter' not in cvars:
# this also avoids 'python discovery'
cvars['ansible_python_interpreter'] = sys.executable
# get handler
self._handler = self._get_action_handler(connection=self._connection, templar=templar)