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.yml22
1 files changed, 22 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..5e24f4e
--- /dev/null
+++ b/roles/_workstation/basetools/tasks/install.yml
@@ -0,0 +1,22 @@
+---
+
+- 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:
+ - conftest
+ - dive-bin
+ - pandoc-bin
+ - pipewatch-git
+ - wkhtmltopdf
+ when: ansible_distribution in ["Archlinux"]
remember that computers suck.