ansible.cfg: Set remote_tmp

Many hosts (should) have `/tmp` mounted with the `noexec` flag, which
prevents Ansible modules written there from running. To work around
this, the `remote_tmp` configuration option should be set to a path
under `/var/tmp`, which is not mounted noexec.
jenkins-master
Dustin 2018-04-08 14:26:53 -05:00
parent a4aeda6371
commit 6d9406e389
1 changed files with 2 additions and 0 deletions

View File

@ -8,3 +8,5 @@ fact_caching = jsonfile
fact_caching_connection = .fact-cache fact_caching_connection = .fact-cache
vault_password_file = .vault-secret.sh vault_password_file = .vault-secret.sh
remote_tmp = /var/tmp/.ansible-${USER}