aboutsummaryrefslogtreecommitdiffstats
path: root/roles/_workstation/basetools/tasks/install.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/_workstation/basetools/tasks/install.yml')
-rw-r--r--roles/_workstation/basetools/tasks/install.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/_workstation/basetools/tasks/install.yml b/roles/_workstation/basetools/tasks/install.yml
new file mode 100644
index 0000000..655fea3
--- /dev/null
+++ b/roles/_workstation/basetools/tasks/install.yml
@@ -0,0 +1,17 @@
+---
+
+- name: install distribution packages
+ ansible.builtin.package:
+ name: "{{ item }}"
+ state: present
+ loop:
+ - "{{ basetools_common_packages }}"
+ - "{{ basetools_distribution_packages }}"
+
+- name: install community package
+ ansible.builtin.include_role:
+ name: _workstation/makepkg
+ vars:
+ makepkg_package_name: "{{ item }}"
+ loop: "{{ basetools_makepkg_packages }}"
+ when: ansible_distribution in ["Archlinux"]
remember that computers suck.