11 lines
202 B
YAML
11 lines
202 B
YAML
---
|
|
# Play to install dependencies.
|
|
- name: "Prepare"
|
|
hosts: "all"
|
|
tasks:
|
|
- name: "Install dependencies"
|
|
ansible.builtin.apt:
|
|
update_cache: "yes"
|
|
force_apt_get: "yes"
|
|
|
|
...
|