blob: 1c4c463b703270d7dcab6f3fc2d19de8d2ca391b (
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
ansible.builtin.include_vars: "os_{{ ansible_distribution | lower }}.yml"
- name: include packages
ansible.builtin.include_tasks: pkgs.yml
- name: include operating system setup
ansible.builtin.include_tasks: "os_{{ ansible_distribution | lower }}.yml"
- name: include shell setup
ansible.builtin.include_tasks: shell.yml
- name: include doas setup
ansible.builtin.include_tasks: doas.yml
- name: include smartcard setup
ansible.builtin.include_tasks: smartcard.yml
- name: include ssh setup
ansible.builtin.include_tasks:
file: ssh.yml
args:
apply:
become: true
become_user: "{{ workstation_user }}"
- name: include hosts setup
ansible.builtin.include_tasks:
file: hosts.yml
|