10 lines
319 B
YAML
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
|