From 77f24d1d7e6005c6c23836e9ee53efb16a5f5e36 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Mon, 16 May 2016 10:38:19 +0300 Subject: [PATCH] - Enable Ansible's command warning, set fact caching and retry files path to a directory so they're created. --- .ansible.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.ansible.cfg b/.ansible.cfg index b449281..032987f 100644 --- a/.ansible.cfg +++ b/.ansible.cfg @@ -1,15 +1,16 @@ [defaults] +command_warnings = True deprecation_warnings = True gathering = smart fact_caching = jsonfile -fact_caching_connection = /tmp/ansible_fact_cache +fact_caching_connection = /tmp/ansible_fact_cache/ fact_caching_timeout = 86400 #vault_password_file = ~/.ansible-vault #host_key_checking = False forks = 5 inventory = inventory #sudo_exe = sudo # OpenBSD uses doas from 5.8. -retry_files_save_path = /tmp/ansible_retry +retry_files_save_path = /tmp/ansible_retry/ [ssh_connection] pipelining = True -- GitLab