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 5
5
- default.config.yml
6
6
7
7
pre_tasks :
8
- - include_vars : " {{ item }}"
8
+ - name : Include playbook configuration.
9
+ include_vars : " {{ item }}"
9
10
with_fileglob :
10
11
- " {{ playbook_dir }}/config.yml"
11
12
tags : ['always']
Original file line number Diff line number Diff line change 1
1
---
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 1
1
---
2
2
# TODO: Use sudo once .osx can be run via root with no user interaction.
3
3
- name : Run .osx dotfiles.
4
- shell : " {{ osx_script }}"
4
+ command : " {{ osx_script }}"
5
5
changed_when : false
Original file line number Diff line number Diff line change 1
1
---
2
2
# Custom Terminal theme.
3
3
- 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'
5
5
register : terminal_theme
6
6
changed_when : false
7
7
check_mode : false
8
8
9
9
- name : Ensure custom Terminal profile is added.
10
- shell : open files/terminal/JJG-Term.terminal
10
+ command : open files/terminal/JJG-Term.terminal
11
11
changed_when : false
12
12
when : " 'JJG-Term' not in terminal_theme.stdout"
13
13
14
14
# TODO: This doesn't work in Yosemite. Consider a different solution?
15
15
- name : Ensure custom Terminal profile is set as default.
16
- shell : " {{ item }}"
16
+ command : " {{ item }}"
17
17
with_items :
18
18
- defaults write com.apple.terminal 'Default Window Settings' -string JJG-Term
19
19
- defaults write com.apple.terminal 'Startup Window Settings' -string JJG-Term
You can’t perform that action at this time.
0 commit comments