ansible: disable python3_fact gathering as it's broken on el7
el7 hosts don't have python3 installed normally, so this fact fails. ;( "failed_modules": {"python3_fact": {"failed": true, "module_stderr": "/usr/bin/env: python3: No such file or directory\n", So, lets just disable for now until we can fix it. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
49d1a82f36
commit
6679b35345
1 changed files with 2 additions and 2 deletions
|
@ -332,8 +332,8 @@ vars_plugins={{ ansible_base }}/ansible/vars_plugins:~/.ansible/plugins/vars:/us
|
|||
;error_on_missing_handler=True
|
||||
|
||||
# (list) Which modules to run during a play's fact gathering stage, using the default of 'smart' will try to figure it out based on connection type.
|
||||
;facts_modules=smart
|
||||
facts_modules=smart, python3_fact
|
||||
facts_modules=smart
|
||||
;facts_modules=smart, python3_fact
|
||||
|
||||
# (boolean) Set this to "False" if you want to avoid host key checking by the underlying tools Ansible uses to connect to the host
|
||||
;host_key_checking=True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue