mac-dev-playbook/main.yml

45 lines
1,019 B
YAML
Raw Normal View History

---
- hosts: all
connection: local
vars_files:
- default.config.yml
pre_tasks:
- include_vars: "{{ item }}"
with_fileglob:
- "{{ playbook_dir }}/config.yml"
tags: ['always']
roles:
- role: geerlingguy.homebrew
tags: ['homebrew']
- role: geerlingguy.dotfiles
when: configure_dotfiles
tags: ['dotfiles']
- role: geerlingguy.mas
when: mas_installed_apps
tags: ['mas']
tasks:
- include_tasks: tasks/ansible-setup.yml
- include_tasks: tasks/sudoers.yml
when: configure_sudoers
- include_tasks: tasks/terminal.yml
when: configure_terminal
- include_tasks: tasks/osx.yml
when: configure_osx
tags: ['osx']
2017-05-31 15:07:42 +00:00
- include_tasks: tasks/extra-packages.yml
tags: ['extra-packages']
2017-05-31 15:07:42 +00:00
- name: Run configured post-provision ansible task files.
include_tasks: "{{ outer_item }}"
2017-05-31 15:07:42 +00:00
loop_control:
loop_var: outer_item
with_fileglob: "{{ post_provision_tasks|default(omit) }}"