From acb07e83359e81a7ac55a58dbbd4553e009a74d6 Mon Sep 17 00:00:00 2001 From: Michael Ellnebrand Date: Sun, 21 Apr 2024 19:57:33 +0200 Subject: [PATCH] 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 --- docs/contributing/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributing/README.md b/docs/contributing/README.md index 1007513..ca23c8f 100644 --- a/docs/contributing/README.md +++ b/docs/contributing/README.md @@ -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.