I want to include role dependency. However looks like it downloads from galaxy. I already have a role in pc. How do I provide a path to it in "meta" file.
Say, I want to install a ROLE_B which is dependent on ROLE_A.
Here is the structure I have.
~/Ansible/Playbook.yml
~/Ansible/Roles/ROLE_B
~/Ansible/Roles/ROLE_A
Meta-file of ROLE_B:
---
dependencies: [
- ~/Ansible/Roles/ROLE_A
]
Any idea if it is correct?