Files
aurbis/tasks/update_arch.yml
T
2025-01-01 14:19:13 +01:00

17 lines
370 B
YAML

- name: System update
pacman:
update_cache: yes
upgrade: yes
- name: Install common packages
pacman:
name: "{{ common_packages }}"
when:
- common_packages is defined
- common_packages is truthy
- name: Install host-specific packages
pacman:
name: "{{ host_packages }}"
when:
- host_packages is defined
- host_packages is truthy