-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.yml
41 lines (30 loc) · 952 Bytes
/
local.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
- hosts: localhost
pre_tasks:
- name: Include playbook configuration.
ansible.builtin.include_vars: config.yml
tags: ["always"]
roles:
- role: elliotweiser.osx-command-line-tools
- role: geerlingguy.mac.homebrew
tags: ["homebrew"]
- role: geerlingguy.mac.mas
when: mas_installed_apps or mas_installed_app_ids
tags: ["appstore"]
- role: geerlingguy.mac.dock
when: configure_dock
tags: ["dock"]
tasks:
- import_tasks: tasks/terminal.yml
tags: ["terminal"]
- import_tasks: tasks/ssh.yml
tags: ["ssh", "dotfiles"]
- import_tasks: tasks/gpg.yml
tags: ["gpg", "dotfiles"]
- import_tasks: tasks/dotfiles.yml
tags: ["dotfiles"]
- import_tasks: tasks/build-from-source.yml
tags: ["extra-packages"]
- import_tasks: tasks/extra-packages.yml
tags: ["extra-packages"]
- import_tasks: tasks/macos.yml
tags: ["macos"]