File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ skip_list:
3+ - experimental
Original file line number Diff line number Diff line change 55 - default.config.yml
66
77 pre_tasks :
8- - include_vars : " {{ item }}"
8+ - name : Include playbook configuration.
9+ include_vars : " {{ item }}"
910 with_fileglob :
1011 - " {{ playbook_dir }}/config.yml"
1112 tags : ['always']
Original file line number Diff line number Diff line change 11---
2- - name : geerlingguy.dotfiles
3- - name : geerlingguy.homebrew
4- - name : geerlingguy.mas
2+ roles :
3+ - name : geerlingguy.dotfiles
4+ - name : geerlingguy.homebrew
5+ - name : geerlingguy.mas
Original file line number Diff line number Diff line change 11---
22# TODO: Use sudo once .osx can be run via root with no user interaction.
33- name : Run .osx dotfiles.
4- shell : " {{ osx_script }}"
4+ command : " {{ osx_script }}"
55 changed_when : false
Original file line number Diff line number Diff line change 11---
22# Custom Terminal theme.
33- name : Get current Terminal profile.
4- shell : defaults read com.apple.terminal 'Default Window Settings'
4+ command : defaults read com.apple.terminal 'Default Window Settings'
55 register : terminal_theme
66 changed_when : false
77 check_mode : false
88
99- name : Ensure custom Terminal profile is added.
10- shell : open files/terminal/JJG-Term.terminal
10+ command : open files/terminal/JJG-Term.terminal
1111 changed_when : false
1212 when : " 'JJG-Term' not in terminal_theme.stdout"
1313
1414# TODO: This doesn't work in Yosemite. Consider a different solution?
1515- name : Ensure custom Terminal profile is set as default.
16- shell : " {{ item }}"
16+ command : " {{ item }}"
1717 with_items :
1818 - defaults write com.apple.terminal 'Default Window Settings' -string JJG-Term
1919 - defaults write com.apple.terminal 'Startup Window Settings' -string JJG-Term
You can’t perform that action at this time.
0 commit comments