-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.yml
executable file
·70 lines (57 loc) · 1.95 KB
/
setup.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env -S ansible-playbook --connection local
- name: Setup workstation
hosts: localhost
handlers:
- name: Handlers | Import tasks
ansible.builtin.import_tasks: tasks/handlers.yml
become: true
tasks:
- name: Debug | Display Ansible Gathered facts
ansible.builtin.debug:
var: ansible_facts
tags: ['never', 'debug']
- name: XDG user directories | Import tasks
ansible.builtin.import_tasks: tasks/xdg_user_directories.yml
tags: ['xdg_user_directories']
- name: Facts | Compute Ansible Facts
ansible.builtin.import_tasks: tasks/compute_ansible_facts.yml
tags: ['compute_ansible_facts']
- name: Firewall | Import tasks
ansible.builtin.import_tasks: tasks/firewall.yml
become: true
tags: ['firewall']
- name: Network | Import tasks
ansible.builtin.import_tasks: tasks/network.yml
become: true
tags: ['network']
- name: Sound | Import tasks
ansible.builtin.import_tasks: tasks/sound.yml
become: true
tags: ['sound']
- name: Dotfiles | Import tasks
ansible.builtin.import_tasks: tasks/dotfiles.yml
tags: ['dotfiles']
- name: Fonts | Import tasks
ansible.builtin.import_tasks: tasks/fonts.yml
become: true
tags: ['fonts']
- name: Packages | Import tasks
ansible.builtin.import_tasks: tasks/packages.yml
become: true
tags: ['packages']
- name: GnuPG | Import tasks
ansible.builtin.import_tasks: tasks/gnupg.yml
become: true
tags: ['gnupg']
- name: Google Chrome | Import tasks
ansible.builtin.import_tasks: tasks/google-chrome.yml
become: true
tags: ['google-chrome']
- name: Wireshark | Import tasks
ansible.builtin.import_tasks: tasks/wireshark.yml
become: true
tags: ['wireshark']
- name: YubiKey | Import tasks
ansible.builtin.import_tasks: tasks/yubikey.yml
become: true
tags: ['yubikey']