-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprovisioning.yml
More file actions
54 lines (47 loc) · 1 KB
/
Copy pathprovisioning.yml
File metadata and controls
54 lines (47 loc) · 1 KB
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
---
- hosts: all
become: false
gather_facts: false
vars:
brew_taps:
- caskroom/cask
- caskroom/versions
- homebrew/versions
brew_casks:
- skype
- sublime-text-dev
brew_packages:
- ansible
- duti
- elixir
- emacs
- erlang
- ffmpeg
- fish
- fzf
- git
- imagemagick
- libmagic
- mc
- node
- openssl
- optipng
- postgresql
- python
- redis
- rsync
- ruby-install
- vim
- wget
tasks:
- name: Install required Homebrew Taps
homebrew_tap: name={{ item }} state=present
with_items: "{{ brew_taps }}"
- name: Install packages with Homebrew
homebrew: name={{ item }} state=present
with_items: "{{ brew_packages }}"
- name: Install applications with Homebrew Cask
shell: brew cask install {{ item }}
with_items: "{{ brew_casks }}"
- include: tasks/macos_defaults.yml
- include: tasks/shell.yml