homeserver/roles/hifis-net.unattended_upgrades/molecule/default/prepare.yml

12 lines
202 B
YAML
Raw Normal View History

---
# Play to install dependencies.
- name: "Prepare"
hosts: "all"
tasks:
- name: "Install dependencies"
ansible.builtin.apt:
update_cache: "yes"
force_apt_get: "yes"
...