diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2023-12-18 11:01:36 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2023-12-18 11:24:21 +0100 |
commit | d9a0c6ce3add0772d3fd5959e6c8546d608f8590 (patch) | |
tree | 77ee419997a8ab41bbf520d03ac430cffa21cd84 | |
parent | 946fd7bc7d434607f56371a85bb2ca89d4df8643 (diff) | |
download | rules-d9a0c6ce3add0772d3fd5959e6c8546d608f8590.tar.gz |
fix(roles/_workstation): install packages from makepkg variable
-rw-r--r-- | roles/_workstation/basetools/tasks/install.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/roles/_workstation/basetools/tasks/install.yml b/roles/_workstation/basetools/tasks/install.yml index 5e24f4e..655fea3 100644 --- a/roles/_workstation/basetools/tasks/install.yml +++ b/roles/_workstation/basetools/tasks/install.yml @@ -13,10 +13,5 @@ name: _workstation/makepkg vars: makepkg_package_name: "{{ item }}" - loop: - - conftest - - dive-bin - - pandoc-bin - - pipewatch-git - - wkhtmltopdf + loop: "{{ basetools_makepkg_packages }}" when: ansible_distribution in ["Archlinux"] |