Deprecated Configuration Setting

The configuration setting COLLECTIONS_PATHS was deprecated in Ansible 2.19, see: https://docs.ansible.com/ansible/latest/reference_appendices/config.html#collections-paths
This commit is contained in:
Michael Ellnebrand 2024-04-21 19:57:33 +02:00 committed by GitHub
parent c1ecea1fb5
commit acb07e8335
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
```
[defaults]
COLLECTIONS_PATHS = ./collections
COLLECTIONS_PATH = ./collections
```
2. Create requirements.yml in cloned directory:
@ -26,4 +26,4 @@ rm -rf ./collections && ansible-galaxy install -r requirements.yml
Note: Any change on your clone imply to reinstall the collection.
Tip: You can place a ansible.cfg with `COLLECTIONS_PATHS = ../../collections` in the examples dictory if you want to run the example on local collection in your cloned directory.
Tip: You can place a ansible.cfg with `COLLECTIONS_PATH = ../../collections` in the examples dictory if you want to run the example on local collection in your cloned directory.