aboutsummaryrefslogtreecommitdiffstats
path: root/roles/workstation/tasks/main.yml
blob: ea772d6f61a48ff33416e6acf619f1eab56f2824 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- name: include specific distribution variables
  include_vars: "os_{{ ansible_distribution | lower }}.yml"

- name: include packages
  include_tasks: pkgs.yml

- name: include operating system setup
  include_tasks: "os_{{ ansible_distribution | lower }}.yml"

- name: include shell setup
  include_tasks: shell.yml

- name: include doas setup
  include_tasks: doas.yml

- name: include smartcard setup
  include_tasks: smartcard.yml

- name: include ssh setup
  include_tasks:
    file: ssh.yml
  args:
    apply:
      become: true
      become_user: "{{ workstation_user }}"

- name: include hosts setup
  include_tasks:
    file: hosts.yml
remember that computers suck.