From c42feba85c7c340eb1fe9b9902a05aae9698e33b Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Fri, 5 Sep 2025 12:30:52 -0400 Subject: [PATCH] Changed format of facts cache files to JSON --- ansible.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible.cfg b/ansible.cfg index 026f9cc..b6b6754 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -35,7 +35,7 @@ home=.ansible become_plugins=plugins/become:.ansible/plugins/become:/usr/share/ansible/plugins/become # (string) Chooses which cache plugin to use, the default 'memory' is ephemeral. -fact_caching=yaml +fact_caching=jsonfile # (string) Defines connection or path information for the cache plugin fact_caching_connection=.ansible/facts @@ -481,7 +481,7 @@ yaml_valid_extensions=.yml,.yaml # It can result in a very significant performance improvement when enabled. # However this conflicts with privilege escalation (become). For example, when using 'sudo:' operations you must first disable 'requiretty' in /etc/sudoers on all managed hosts, which is why it is disabled by default. # This setting will be disabled if ``ANSIBLE_KEEP_REMOTE_FILES`` is enabled. -pipelining=True +pipelining=False [colors]