aboutsummaryrefslogtreecommitdiffstats
path: root/roles/_workstation/basetools/tasks/install.yml
blob: 5e24f4e78be0d491ac73278ea3629194b9f74bb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.