-
Notifications
You must be signed in to change notification settings - Fork 0
/
remote_work.yml
executable file
·60 lines (52 loc) · 1.55 KB
/
remote_work.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
- hosts: all
connection: ssh
become: no
vars_files:
- vars.yml
tasks:
- name: Apply the dotfiles tag to the include and to all tasks in dotfiles.yml
include_tasks:
file: tasks/dotfiles.yml
apply:
tags: dotfiles
tags: dotfiles
- name: Apply the brew_install tag to the include and to all tasks in homebrew.yml
include_tasks:
file: tasks/homebrew.yml
apply:
tags: brew_install
tags: brew_install
- name: Apply the brew and packages tags to the include and to all tasks in homebrew_packages.yml
include_tasks:
file: tasks/homebrew_packages.yml
apply:
tags: brew
tags:
- brew
- packages
- name: Apply the cheat tag to the include and to all tasks in cheat.yml
include_tasks:
file: tasks/cheat.yml
apply:
tags: cheat
tags: cheat
- name: Apply the miniforge tag to the include and to all tasks in miniforge.yml
include_tasks:
file: tasks/miniforge.yml
apply:
tags: miniforge
tags: miniforge
- name: Apply the miniforge and packages tags to the include and to all tasks in miniforge_packages.yml
include_tasks:
file: tasks/miniforge_packages.yml
apply:
tags: miniforge
tags:
- miniforge
- packages
- name: Apply the neovim tag to the include and to all tasks in neovim.yml
include_tasks:
file: tasks/neovim.yml
apply:
tags: neovim
tags: neovim