ansible-keepass/docs/contributing
Michael Ellnebrand acb07e8335
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
2024-04-21 19:57:33 +02:00
..
README.md Deprecated Configuration Setting 2024-04-21 19:57:33 +02:00

README.md

Contributing

  1. Create ansible.cfg in cloned directory:
[defaults]
COLLECTIONS_PATH = ./collections
  1. Create requirements.yml in cloned directory:
---
collections:
  - name: namespace.collection_name
    source: /where/is/your/clone
    type: dir
  1. To install the collection locally in your cloned directory, just install it through ansible-galaxy
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_PATH = ../../collections in the examples dictory if you want to run the example on local collection in your cloned directory.