diff options
Diffstat (limited to 'ansible.cfg')
-rw-r--r-- | ansible.cfg | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ansible.cfg b/ansible.cfg index 589a58e9d..c1c76a496 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -10,7 +10,6 @@ #log_path = /tmp/ansible.log # Additional default options for OpenShift Ansible -callback_plugins = callback_plugins/ forks = 20 host_key_checking = False retry_files_enabled = False @@ -23,15 +22,16 @@ fact_caching = jsonfile fact_caching_connection = $HOME/ansible/facts fact_caching_timeout = 600 callback_whitelist = profile_tasks +inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt +# work around privilege escalation timeouts in ansible: +timeout = 30 -# Uncomment to use the provided BYO inventory -#hostfile = inventory/byo/hosts +# Uncomment to use the provided example inventory +#inventory = inventory/hosts.example -# Uncomment to use the provided GCE dynamic inventory script -#hostfile = inventory/gce/gce.py - -# Uncomment to use the provided AWS dynamic inventory script -#hostfile = inventory/aws/ec2.py +[inventory] +# fail more helpfully when the inventory file does not parse (Ansible 2.4+) +unparsed_is_failed=true # Additional ssh options for OpenShift Ansible [ssh_connection] |