Files
infra/ansible/roles/webserver/tasks/main.yaml
shockrah 5fdb2f0e18
Some checks failed
Wiki Resources Sanity Checks / ruff-checks (push) Failing after 1s
Setting up playbook, for updating system packages
2026-05-18 23:30:48 -07:00

15 lines
333 B
YAML

- name: Update all packages to ensure compliance with latest updates
tags:
- housekeeping
ansible.builtin.apt:
update_cache: true
autoclean: true
autoremove: true
upgrade: safe
- name: Notify the reboot
tags:
- reboot
ansible.builtin.debug:
msg: "Restarting the host itself"
notify: Reboot Host