macos-provisioning/playbook.yml
2015-12-03 16:50:13 +00:00

19 lines
444 B
YAML

---
- hosts: all
vars_files:
- config.yml
pre_tasks:
- name: Ensure that the Code directory exists.
file:
path: ~/Code
state: directory
roles:
- { role: geerlingguy.homebrew, tags: ['brew'] }
- { role: geerlingguy.dotfiles, tags: ['dotfiles'] }
- { role: opdavies.sculpin, tags: ['sculpin'] }
- { role: geerlingguy.ruby, tags: ['ruby'] }
- { role: geerlingguy.nodejs, tags: ['node'] }