don't set global executable...
This commit is contained in:
parent
89788a83ed
commit
ea245bbff2
|
@ -13,7 +13,6 @@ module_utils = lib/module_utils
|
||||||
retry_files_enabled = False
|
retry_files_enabled = False
|
||||||
display_args_to_stdout = True
|
display_args_to_stdout = True
|
||||||
forks = 100
|
forks = 100
|
||||||
executable = /bin/bash
|
|
||||||
|
|
||||||
# We use lots of deprecated functionality to support older versions.
|
# We use lots of deprecated functionality to support older versions.
|
||||||
deprecation_warnings = False
|
deprecation_warnings = False
|
||||||
|
|
|
@ -25,6 +25,8 @@
|
||||||
environment:
|
environment:
|
||||||
https_proxy: "{{ lookup('env', 'https_proxy')|default('') }}"
|
https_proxy: "{{ lookup('env', 'https_proxy')|default('') }}"
|
||||||
no_proxy: "{{ lookup('env', 'no_proxy')|default('') }}"
|
no_proxy: "{{ lookup('env', 'no_proxy')|default('') }}"
|
||||||
|
args:
|
||||||
|
executable: "/bin/bash"
|
||||||
|
|
||||||
- name: run get_url with specially-sourced python including jinja
|
- name: run get_url with specially-sourced python including jinja
|
||||||
get_url:
|
get_url:
|
||||||
|
@ -41,3 +43,5 @@
|
||||||
environment:
|
environment:
|
||||||
https_proxy: "{{ lookup('env', 'https_proxy')|default('') }}"
|
https_proxy: "{{ lookup('env', 'https_proxy')|default('') }}"
|
||||||
no_proxy: "{{ lookup('env', 'no_proxy')|default('') }}"
|
no_proxy: "{{ lookup('env', 'no_proxy')|default('') }}"
|
||||||
|
args:
|
||||||
|
executable: "/bin/bash"
|
||||||
|
|
Loading…
Reference in New Issue