new file: nodes/ansible/os-reboot.playbook.yaml modified: nodes/ansible/os-update.playbook.yaml new file: nodes/ansible/tasks/os-get-info.yaml new file: nodes/ansible/tasks/os-reboot.yaml new file: nodes/ansible/tasks/os-update.yaml
23 lines
557 B
YAML
23 lines
557 B
YAML
- ansible.builtin.import_tasks:
|
|
file: os-get-info.yaml
|
|
|
|
- name: Update all Packages to their latest version
|
|
ansible.builtin.apt:
|
|
update_cache: true
|
|
force_apt_get: true
|
|
|
|
- name: Upgrade all packages on servers
|
|
ansible.builtin.apt:
|
|
upgrade: dist
|
|
force_apt_get: true
|
|
|
|
- name: Check if a reboot is needed
|
|
register: reboot_required_file
|
|
stat: path=/var/run/reboot-required
|
|
|
|
- ansible.builtin.import_tasks:
|
|
file: os-reboot.yaml
|
|
when: reboot_required_file.stat.exists
|
|
|
|
- ansible.builtin.import_tasks:
|
|
file: os-get-info.yaml |