mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-22 03:43:06 +00:00
23 lines
No EOL
528 B
YAML
23 lines
No EOL
528 B
YAML
---
|
|
- name: Mac Development Playbook
|
|
hosts: self
|
|
user: jgeerling
|
|
connection: local
|
|
|
|
vars:
|
|
- downloads: ~/.ansible-downloads/
|
|
|
|
tasks:
|
|
- name: Create Ansible downloads directory
|
|
file: path={{ downloads }} state=directory
|
|
|
|
- include: apps/chrome.yml
|
|
- include: apps/firefox.yml
|
|
- include: apps/handbrake.yml
|
|
- include: apps/homebrew.yml
|
|
- include: apps/sequel-pro.yml
|
|
- include: apps/sublime.yml
|
|
- include: apps/transmit.yml
|
|
- include: apps/vagrant.yml
|
|
- include: apps/virtualbox.yml
|
|
- include: apps/vlc.yml |