9694afa91a
To aid in understanding the output of failed tasks more easily, we enable the debug stdout callback plugin by default. We prefer this to using the yaml stdout callback because it more clearly outputs the stdout/stderr output. Change-Id: If5f6a4e5d7138eaee8ab4a1b1bdde3009e5f649e
22 lines
820 B
Plaintext
22 lines
820 B
Plaintext
export ANSIBLE_STDOUT_CALLBACK="${ANSIBLE_STDOUT_CALLBACK:-debug}"
|
|
|
|
export ANSIBLE_GATHERING="${ANSIBLE_GATHERING:-smart}"
|
|
export ANSIBLE_GATHER_SUBSET="${ANSIBLE_GATHER_SUBSET:-network,hardware,virtual}"
|
|
|
|
export ANSIBLE_CACHE_PLUGIN="${ANSIBLE_CACHE_PLUGIN:-jsonfile}"
|
|
export ANSIBLE_CACHE_PLUGIN_CONNECTION="${ANSIBLE_CACHE_PLUGIN_CONNECTION:-/tmp/mnaio_facts}"
|
|
export ANSIBLE_CACHE_PLUGIN_TIMEOUT="${ANSIBLE_CACHE_PLUGIN_TIMEOUT:-86400}"
|
|
|
|
export ANSIBLE_HOST_KEY_CHECKING=False
|
|
export ANSIBLE_SSH_CONTROL_PATH=/tmp/%%h-%%r
|
|
export ANSIBLE_SSH_ARGS="-o ControlMaster=no \
|
|
-o UserKnownHostsFile=/dev/null \
|
|
-o StrictHostKeyChecking=no \
|
|
-o ServerAliveInterval=64 \
|
|
-o ServerAliveCountMax=1024 \
|
|
-o Compression=no \
|
|
-o TCPKeepAlive=yes \
|
|
-o VerifyHostKeyDNS=no \
|
|
-o ForwardX11=no \
|
|
-o ForwardAgent=yes"
|