From a2c4867af62979d0c7ad2e5dc30c2dc55a1227df Mon Sep 17 00:00:00 2001 From: Fabio Sinibaldi Date: Fri, 4 Apr 2025 17:12:03 +0200 Subject: [PATCH] facts module fix --- ansible/ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index 59f3c89..5225338 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -305,7 +305,7 @@ force_color=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. # If adding your own modules but you still want to use the default Ansible facts, you will want to include 'setup' or corresponding network module to the list (if you add 'smart', Ansible will also figure it out). # This does not affect explicit calls to the 'setup' module, but does always affect the 'gather_facts' action (implicit or explicit). -facts_modules=[smart] +facts_modules=smart # (boolean) Set this to "False" if you want to avoid host key checking by the underlying connection plugin Ansible uses to connect to the host. # Please read the documentation of the specific connection plugin used for details.