Fix pacman_packages var in base_install
This commit is contained in:
@@ -28,18 +28,19 @@
|
||||
|
||||
- name: Compute flattened package list from all categories + selected GPU set
|
||||
ansible.builtin.set_fact:
|
||||
all_category_packages: >-
|
||||
pacman_packages: >-
|
||||
{{
|
||||
(
|
||||
pkgsets
|
||||
| dict2items
|
||||
| map(attribute='value')
|
||||
| list
|
||||
| flatten
|
||||
)
|
||||
+ gpu_driver_sets[selected_gpu_vendor]
|
||||
(
|
||||
pkgsets
|
||||
| dict2items
|
||||
| map(attribute='value')
|
||||
| list
|
||||
| flatten
|
||||
)
|
||||
+ gpu_driver_sets[selected_gpu_vendor]
|
||||
) | unique
|
||||
}}
|
||||
pacman_packages: "{{ all_category_packages | unique }}"
|
||||
|
||||
- name: Install official repo packages
|
||||
community.general.pacman:
|
||||
|
||||
Reference in New Issue
Block a user