Skip to content

Latest commit

 

History

History

contributing

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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.