28 lines
981 B
YAML
28 lines
981 B
YAML
---
|
|
- name: Include check SSH keys tasks
|
|
ansible.builtin.include_tasks: 01-check-ssh-keys.yml
|
|
when: update_check_ssh_keys
|
|
|
|
- name: Include check system updates tasks
|
|
ansible.builtin.include_tasks: 02-check-system-updates.yml
|
|
when: update_check_system
|
|
|
|
- name: Include check Spigot version tasks
|
|
ansible.builtin.include_tasks: 03-check-spigot-version.yml
|
|
when: update_check_spigot
|
|
|
|
- name: Include download new version tasks
|
|
ansible.builtin.include_tasks: 04-download-new-version.yml
|
|
when: spigot_needs_update | default(false)
|
|
|
|
- name: Include compile new version tasks
|
|
ansible.builtin.include_tasks: 05-compile-new-version.yml
|
|
when: spigot_needs_update | default(false)
|
|
|
|
- name: Include configure new version tasks
|
|
ansible.builtin.include_tasks: 06-configure-new-version.yml
|
|
when: spigot_needs_update | default(false)
|
|
|
|
- name: Include switch versions tasks
|
|
ansible.builtin.include_tasks: 07-switch-versions.yml
|
|
when: spigot_update_ready | default(false) |