mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-22 03:43:06 +00:00
dock util from https://github.com/enlewof \n Fixed default value for variable, \ncreated block (for tags to work), \nFixed some strong language, \N fixed some shell / command preference (ansible-lint)
This commit is contained in:
parent
874d83e3b8
commit
baae72b63e
2 changed files with 6 additions and 0 deletions
|
@ -6,6 +6,8 @@ configure_terminal: false
|
||||||
configure_osx: true
|
configure_osx: true
|
||||||
configure_dock: []
|
configure_dock: []
|
||||||
|
|
||||||
|
configure_dock: []
|
||||||
|
|
||||||
configure_sudoers: false
|
configure_sudoers: false
|
||||||
sudoers_custom_config: ''
|
sudoers_custom_config: ''
|
||||||
# Example:
|
# Example:
|
||||||
|
|
4
main.yml
4
main.yml
|
@ -48,6 +48,10 @@
|
||||||
executable: "{{ item.executable | default(omit) }}"
|
executable: "{{ item.executable | default(omit) }}"
|
||||||
loop: "{{ gem_packages }}"
|
loop: "{{ gem_packages }}"
|
||||||
|
|
||||||
|
- include_tasks: tasks/dock.yml
|
||||||
|
when: configure_dock
|
||||||
|
tags: ['dock']
|
||||||
|
|
||||||
- name: Run configured post-provision ansible task files.
|
- name: Run configured post-provision ansible task files.
|
||||||
include_tasks: "{{ outer_item }}"
|
include_tasks: "{{ outer_item }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
|
|
Loading…
Reference in a new issue