diff --git a/tasks/main.yml b/tasks/main.yml index d05aa5388f2b6db709a526273b5b733a9900efde..89cd7894516790142ec0633498e8f96d59230f69 100755 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,14 +1,25 @@ --- - block: - - import_tasks: install.yml - - import_tasks: test.yml + + - name: Import install + import_tasks: install.yml + + - name: Import test + import_tasks: test.yml tags: - update - - import_tasks: configure.yml - - import_tasks: auth_json.yml - - import_tasks: update.yml + + - name: Import configure + import_tasks: configure.yml + + - name: Import auth_json + import_tasks: auth_json.yml + + - name: Import update + import_tasks: update.yml when: composer_update == true tags: - update + when: not excluded_roles or "composer" not in excluded_roles