forked from chrisminton/mac-dev-playbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
66 lines (51 loc) · 1.35 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
---
- hosts: all
connection: local
vars_files:
- default.config.yml
pre_tasks:
- include_vars: "{{ item }}"
with_fileglob:
- ../config.yml
tags: ['always']
roles:
- role: geerlingguy.homebrew
tags: ['homebrew']
- role: geerlingguy.dotfiles
when: configure_dotfiles
tags: ['dotfiles']
- role: geerlingguy.mas
when: mas_installed_apps
tags: ['mas']
tasks:
- include: tasks/ansible-setup.yml
- include: tasks/sudoers.yml
when: configure_sudoers
- include: tasks/terminal.yml
when: configure_terminal
tags: ['terminal']
- include: tasks/chef.yml
tags: ['chef']
- include: tasks/vim.yml
when: configure_vim
tags: ['vim']
- include: tasks/vscode.yml
when: configure_vscode
tags: ['vscode']
- include: tasks/osx.yml
when: configure_osx
tags: ['osx']
- include: tasks/gpg.yml
tags: ['gpg']
- include: tasks/zsh.yml
tags: ['zsh']
- include: tasks/aws.yml
when: configure_aws
tags: ['aws']
- include: tasks/extra-packages.yml
tags: ['extra-packages']
- name: Run configured post-provision ansible task files.
include: "{{ outer_item }}"
loop_control:
loop_var: outer_item
with_fileglob: "{{ post_provision_tasks|default(omit) }}"