17 lines
596 B
YAML
17 lines
596 B
YAML
---
|
|
- name: Include check Java tasks
|
|
ansible.builtin.include_tasks: 01-check-java.yml
|
|
|
|
- name: Include remove old Java tasks
|
|
ansible.builtin.include_tasks: 02-remove-old-java.yml
|
|
when: java_needs_update | default(false)
|
|
|
|
- name: Include install Java tasks
|
|
ansible.builtin.include_tasks: 03-install-java.yml
|
|
when: java_not_installed | default(false) or java_needs_update | default(false)
|
|
|
|
- name: Include configure Java tasks
|
|
ansible.builtin.include_tasks: 04-configure-java.yml
|
|
|
|
- name: Include validate installation tasks
|
|
ansible.builtin.include_tasks: 05-validate-installation.yml |