-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
91 lines (76 loc) · 1.86 KB
/
main.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
- name: Ubuntu dev env installation
hosts: all
become: yes
gather_facts: yes
vars_files:
- config.default.yml
pre_tasks:
- name: Include playbook configuration.
ansible.builtin.include_vars: "{{ item }}"
with_fileglob:
- "{{ playbook_dir }}/config.yml"
tags: ["always"]
tasks:
- name: Import admin
ansible.builtin.import_tasks: tasks/admin.yml
tags:
- admin
- name: Import apt packages
ansible.builtin.import_tasks: tasks/apt_pkgs.yml
tags:
- sw
- apt
- name: Import local and deb packages
ansible.builtin.import_tasks: tasks/deb_local_pkgs.yml
tags:
- sw
- deb
- name: Import snap packages
ansible.builtin.import_tasks: tasks/snap_pkgs.yml
tags:
- sw
- snap
- name: Import pip packages
ansible.builtin.import_tasks: tasks/pip_pkgs.yml
tags:
- sw
- pip
- name: Import zsh
ansible.builtin.import_tasks: tasks/zsh.yml
tags:
- sw
- zsh
- name: Import nvm
ansible.builtin.import_tasks: tasks/nvm.yml
tags:
- sw
- nvm
- name: Import awscli
ansible.builtin.import_tasks: tasks/awscli.yml
tags:
- sw
- awscli
- name: Import npm global packages
ansible.builtin.import_tasks: tasks/npm.yml
tags:
- sw
- npm
- name: Import neovim
ansible.builtin.import_tasks: tasks/neovim.yml
tags:
- sw
- neovim
- name: Import local settings
ansible.builtin.import_tasks: tasks/local_settings.yml
tags:
- local
- name: Import alias
ansible.builtin.import_tasks: tasks/alias.yml
tags:
- alias
- name: Import tpm
ansible.builtin.import_tasks: tasks/tpm.yml
tags:
- sw
- tpm