-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.yml
More file actions
34 lines (29 loc) · 725 Bytes
/
apps.yml
File metadata and controls
34 lines (29 loc) · 725 Bytes
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
---
- name: Install Applications
hosts: osx
vars:
gui_apps:
- cyberduck
- firefox
- google-chrome
- iterm2
- little-snitch
- microsoft-office
- visual-studio-code
- vlc
cli_apps:
- dockutil
- iperf3
tasks:
- name: Ensure Homebrew is up-to-date
homebrew:
update_homebrew: yes
- name: Install Homebrew(CLI) Applications
homebrew:
name: "{{ cli_apps }}"
state: present
- name: Install Homebrew Cask(GUI) Applications
homebrew_cask:
name: "{{ item }}"
state: present
with_items: "{{ gui_apps }}"