-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmac-setup.yml
37 lines (30 loc) · 880 Bytes
/
mac-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
---
- hosts: localhost
connection: local
vars_files:
- config.yml
- vars/apple-credentials.yml
roles:
- role: geerlingguy.mac.homebrew
tags: ['homebrew']
ignore_errors: yes
- role: geerlingguy.mac.mas
when: mas_installed_apps
tags: ['mas']
ignore_errors: yes
- role: osx
tags: ['osx']
tasks:
- include_tasks: tasks/install-oh-my-zsh.yml
tags: ['oh-my-zsh']
- include_tasks: tasks/extra-packages.yml
tags: ['extra_packages']
- include_tasks: tasks/install-hack-font.yml
tags: ['hack_font']
- include_tasks: tasks/configuration.yml
tags: ['configuration']
- name: Run configured post-provision ansible task files.
include_tasks: '{{ outer_item }}'
loop_control:
loop_var: outer_item
with_fileglob: '{{ post_provision_tasks|default(omit) }}'