Ansible verison: 2.7.8
I define role B as Role A dependencies in meta/main.yml like this:
dependencies:
- { role: B, src: 'git+https://github.xxx/xxx/B.git', version: '1.0' }
When I run playbook with Role A, I suppose ansible would download Role B automatically. But not. Why?
Shall I run ansible-galaxy install -r requirements.yml firstly?
Thank you.