Hi,
is there a way for executing role tasks before executing role dependencies? In my apache_httpd role I want to deploy some configuration files before calling the sub role docker_application. Latter will do some boilerplate tasks when creating docker contianers (in this case starting the httpd container). But before I want to deploy the httpd.conf and basic_auth file with the apache_httpd role.
I tried to create a role within a role and add is as dependency with the absolute path:
"{{ role_path }}/subroles/apache_httpd_pretasks"
, but at the moment of resolving the depenencies the roles_path variable isn’t set yet.