Files
infra/ansible/playbook/vultr-static-update.yaml
shockrah 06f0853f44
Some checks failed
Wiki Resources Sanity Checks / ruff-checks (push) Failing after 1s
Pre-commit hook fixes
2026-05-19 00:57:57 -07:00

17 lines
413 B
YAML

---
- name: Ensure latest system updates are applied to the host
hosts: shockrah.xyz
remote_user: webadmin
tasks:
- name: Run system upgrade and update cache
become: true
ansible.builtin.apt:
update_cache: true
upgrade: safe
- name: Reboot Host Trigger
tags:
- reboot
ansible.builtin.debug:
msg: "Rebooting host now"
notify: Reboot Host