-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremote.yml
executable file
·112 lines (98 loc) · 2.89 KB
/
remote.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# user specific
- hosts: localhost
connection: local
become: yes
become_user: "{{user}}"
roles:
- role: evandam.conda
vars_files:
- vars.yml
tasks:
- name: Print all tags
debug:
msg: "Available tags: {{ ansible_run_tags }}"
- 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 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 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
- name: Apply the aodn and chef tags to the include and to all tasks in aodn_chef.yml
include_tasks:
file: tasks/aodn_chef.yml
apply:
tags: aodn
tags:
- aodn
- chef
- name: Apply the aodn and data_services tags to the include and to all tasks in data_services.yml
include_tasks:
file: tasks/data_services.yml
apply:
tags: aodn
tags:
- aodn
- data_services
- name: Apply the fonts tag to the include and to all tasks in fonts.yml
include_tasks:
file: tasks/fonts.yml
apply:
tags: fonts
tags: fonts
- name: Apply the appimages, nextcloud, and packages tags to the include and to all tasks in nextcloud.yml
include_tasks:
file: tasks/nextcloud.yml
apply:
tags: appimages
tags:
- appimages
- nextcloud
- packages
- name: Apply the github and repos tags to the include and to all tasks in github_repos.yml
include_tasks:
file: tasks/github_repos.yml
apply:
tags: github
tags:
- github
- repos