Silence Ansible warnings by being explicit

This commit is contained in:
2020-01-19 02:03:43 -05:00
parent 2c6171e649
commit 73cc25c434
2 changed files with 7 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
[defaults]
inventory = ./environments/development
interpreter_python = /usr/bin/python
[ssh_connection]
pipelining=True

View File

@@ -14,3 +14,9 @@
apt:
name: python-docker
state: present
- name: Create Ansible's temporary directory
file:
path: /root/.ansible/tmp
state: directory
mode: '0700'