2014-02-13 03:47:18 +00:00
|
|
|
---
|
2014-12-31 15:56:09 +00:00
|
|
|
- hosts: localhost
|
2014-02-13 04:33:32 +00:00
|
|
|
user: jgeerling
|
|
|
|
connection: local
|
|
|
|
|
2014-10-03 04:07:02 +00:00
|
|
|
vars_files:
|
|
|
|
- vars/main.yml
|
|
|
|
|
|
|
|
roles:
|
|
|
|
- geerlingguy.homebrew
|
2015-01-03 05:03:17 +00:00
|
|
|
- geerlingguy.dotfiles
|
2014-02-13 04:33:32 +00:00
|
|
|
|
|
|
|
tasks:
|
2014-12-31 20:22:42 +00:00
|
|
|
- include: tasks/ansible-setup.yml
|
2014-10-03 04:07:02 +00:00
|
|
|
- include: tasks/preferences.yml
|
2015-01-03 05:03:17 +00:00
|
|
|
|
|
|
|
# TODO: Use sudo once .osx can be run via root with no user interaction.
|
|
|
|
- name: Run .osx dotfiles.
|
|
|
|
shell: ~/.osx --no-restart
|
|
|
|
changed_when: false
|