From ea245bbff2819d7bbec284eb5967da4c7eacdadf Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Wed, 19 Feb 2020 08:42:44 -0800 Subject: [PATCH] don't set global executable... --- tests/ansible/ansible.cfg | 1 - .../integration/interpreter_discovery/complex_args.yml | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/ansible/ansible.cfg b/tests/ansible/ansible.cfg index d2154d06..59752492 100644 --- a/tests/ansible/ansible.cfg +++ b/tests/ansible/ansible.cfg @@ -13,7 +13,6 @@ module_utils = lib/module_utils retry_files_enabled = False display_args_to_stdout = True forks = 100 -executable = /bin/bash # We use lots of deprecated functionality to support older versions. deprecation_warnings = False diff --git a/tests/ansible/integration/interpreter_discovery/complex_args.yml b/tests/ansible/integration/interpreter_discovery/complex_args.yml index fb4c75cc..2f68204b 100644 --- a/tests/ansible/integration/interpreter_discovery/complex_args.yml +++ b/tests/ansible/integration/interpreter_discovery/complex_args.yml @@ -25,6 +25,8 @@ environment: https_proxy: "{{ lookup('env', 'https_proxy')|default('') }}" no_proxy: "{{ lookup('env', 'no_proxy')|default('') }}" + args: + executable: "/bin/bash" - name: run get_url with specially-sourced python including jinja get_url: @@ -41,3 +43,5 @@ environment: https_proxy: "{{ lookup('env', 'https_proxy')|default('') }}" no_proxy: "{{ lookup('env', 'no_proxy')|default('') }}" + args: + executable: "/bin/bash"