diff options
| author | Tomas Sedovic <tomas@sedovic.cz> | 2017-08-21 13:04:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-21 13:04:49 +0200 |
| commit | 603f218f4e7e3ee67188029f9cbb81713111c4ee (patch) | |
| tree | e02724750196330cb42cb9d6acc3abfdb70161f8 | |
| parent | ec07a43c6ac64d220458b688ded7ce3634eeb0d7 (diff) | |
Ignore *.cfg and *.crt in the openstack inventory (#672)
This allows our users to keep the ansible.cfg file in the inventory as
well as putting e.g. LDAP certificates in.
Fixes #481
| -rw-r--r-- | playbooks/provisioning/openstack/sample-inventory/ansible.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/provisioning/openstack/sample-inventory/ansible.cfg b/playbooks/provisioning/openstack/sample-inventory/ansible.cfg index 1a092ed6b..81d8ae10c 100644 --- a/playbooks/provisioning/openstack/sample-inventory/ansible.cfg +++ b/playbooks/provisioning/openstack/sample-inventory/ansible.cfg @@ -6,7 +6,7 @@ forks = 50 timeout = 30 host_key_checking = false inventory = inventory -inventory_ignore_extensions = secrets.py, .pyc +inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt gathering = smart retry_files_enabled = false fact_caching = jsonfile |
