I currently have a role(role_one) that, as specified in its meta/main.yml, list another role dependency (role_two).
dependencies:
- src: git+https://wwwin-github.com/role_two.git
version: master
I would like this dependency (role_two) to run AFTER role_one. However, every time I invoke role_one, role_two always gets run first.
Is there any way to alter this behavior? Or does having a dependency listed mean that dependency will always run first?
Any help would be appreciated!
-Ryan