By setting the `desired_package_state` variable we can change if ansible should only ensure that the packages exist on the system (`present`) or that they are also updated to their latest version (`latest`).
8 lines
184 B
YAML
8 lines
184 B
YAML
---
|
|
- name: Install many fonts
|
|
community.general.xbps:
|
|
name: "{{ fonts }}"
|
|
state: "{{ desired_package_state | default('present') }}"
|
|
notify: installed-fonts
|
|
when: fonts
|
|
|