From 30ec841cad9dd0099c47d89c196d8dbd2e805c5e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 19 May 2018 10:20:22 -0500 Subject: [PATCH] ansible.cfg: Fix remote_tmp Newer versions of ansible no longer require a single top-level temporary directory per user, as each run creates its own. Combined with the weird random failures on *dc0.pyrocufflink.blue* that prevent Jenkins from using Ansible occasionally, it's better to just let Ansible create its own temporary directory directly in `/var/tmp` and clean up after itself when it finishes. --- ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index 69e6936..c3ce1b8 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -7,4 +7,4 @@ gathering = smart fact_caching = jsonfile fact_caching_connection = .fact-cache -remote_tmp = /var/tmp/.ansible-${USER} +remote_tmp = /var/tmp