mac-dev-playbook/main.yml

57 lines
1.4 KiB
YAML
Raw Normal View History

---
2023-02-21 04:55:24 +00:00
- name: Configure host.
hosts: all
vars_files:
- default.config.yml
pre_tasks:
- name: Include playbook configuration.
include_vars: "{{ item }}"
with_fileglob:
- "{{ playbook_dir }}/config.yml"
tags: ['always']
roles:
- role: elliotweiser.osx-command-line-tools
- role: geerlingguy.mac.homebrew
tags: ['homebrew']
- role: geerlingguy.dotfiles
when: configure_dotfiles
tags: ['dotfiles']
- role: geerlingguy.mac.mas
when: mas_installed_apps or mas_installed_app_ids
tags: ['mas']
- role: geerlingguy.mac.dock
when: configure_dock
tags: ['dock']
tasks:
2021-04-12 15:43:47 +00:00
- import_tasks: tasks/sudoers.yml
when: configure_sudoers
2021-04-12 15:43:47 +00:00
tags: ['sudoers']
2021-04-12 15:43:47 +00:00
- import_tasks: tasks/terminal.yml
when: configure_terminal
2021-04-12 15:43:47 +00:00
tags: ['terminal']
2021-04-12 15:43:47 +00:00
- import_tasks: tasks/osx.yml
when: configure_osx
tags: ['osx']
2017-05-31 15:07:42 +00:00
2021-04-12 15:43:47 +00:00
- import_tasks: tasks/extra-packages.yml
tags: ['extra-packages']
- import_tasks: tasks/sublime-text.yml
when: configure_sublime
tags: ['sublime-text']
2023-02-21 04:55:24 +00:00
- name: Run post-provision task files in a block.
tags: ['post']
block:
2022-03-31 15:37:05 +00:00
- name: Run configured post-provision ansible task files.
include_tasks: "{{ outer_item }}"
loop_control:
loop_var: outer_item
2023-02-21 04:55:24 +00:00
with_fileglob: "{{ post_provision_tasks | default(omit) }}"