Raspberry-Pi-IaC/playbook.yml
2024-04-09 17:12:27 +02:00

10 lines
319 B
YAML

---
- name: Install raspberry pi
become: true
hosts: raspberry_pis
tasks:
# Disable warning on updating latest packages, it should be safe enough for this system.
- name: Update all packages to their latest version # noqa: package-latest
ansible.builtin.apt:
name: "*"
state: latest