diff --git a/roles/01-java/tasks/main.yml b/roles/01-java/tasks/main.yml index 6a39f26..b40470f 100644 --- a/roles/01-java/tasks/main.yml +++ b/roles/01-java/tasks/main.yml @@ -1,5 +1,12 @@ --- -- include: 01-check-java.yml -- include: 02-install-java.yml -- include: 03-check-java-install.yml -- include: 04-display-version.yml \ No newline at end of file +- name: Inclure la tâche de vérification + ansible.builtin.import_tasks: 01-check-java.yml + +- name: Inclure la tâche d'installation + ansible.builtin.import_tasks: 02-install-java.yml + +- name: Inclure la tâche de vérification d'installation + ansible.builtin.import_tasks: 03-check-java-install.yml + +- name: Inclure la tâche d'affichage de la version installé + ansible.builtin.import_tasks: 04-display-version.yml \ No newline at end of file