File tree 5 files changed +23
-19
lines changed 5 files changed +23
-19
lines changed Original file line number Diff line number Diff line change 2
2
downloads : ~/.ansible-downloads/
3
3
4
4
configure_sudoers : yes
5
- configure_prefs : yes
5
+ configure_terminal : yes
6
6
configure_osx : yes
7
7
8
8
dotfiles_repo : https://github.com/geerlingguy/dotfiles.git
Original file line number Diff line number Diff line change 18
18
19
19
tasks :
20
20
- include : tasks/ansible-setup.yml
21
- - include : tasks/preferences.yml
22
- when : configure_prefs
23
21
24
- # TODO: Use sudo once .osx can be run via root with no user interaction.
25
- - name : Run .osx dotfiles.
26
- shell : ~/.osx --no-restart
27
- changed_when : false
22
+ - include : tasks/sudoers.yml
23
+ when : configure_sudoers
24
+
25
+ - include : tasks/terminal.yml
26
+ when : configure_terminal
27
+
28
+ - include : tasks/osx.yml
28
29
when : configure_osx
Original file line number Diff line number Diff line change
1
+ ---
2
+ # TODO: Use sudo once .osx can be run via root with no user interaction.
3
+ - name : Run .osx dotfiles.
4
+ shell : ~/.osx --no-restart
5
+ changed_when : false
Original file line number Diff line number Diff line change
1
+ ---
2
+ # Sudoers configuration (enables more convenient Vagrant usage).
3
+ - name : Copy sudoers configuration into place.
4
+ copy :
5
+ src : files/etc/sudoers
6
+ dest : /etc/sudoers
7
+ mode : 0440
8
+ validate : ' visudo -cf %s'
9
+ become : yes
10
+ when : configure_sudoers
Original file line number Diff line number Diff line change 19
19
- defaults write com.apple.terminal 'Startup Window Settings' -string JJG-Term
20
20
changed_when : false
21
21
when : " 'JJG-Term' not in terminal_theme.stdout"
22
-
23
- # Sudoers configuration (enables more convenient Vagrant usage).
24
- - name : Copy sudoers configuration into place.
25
- copy :
26
- src : files/etc/sudoers
27
- dest : /etc/sudoers
28
- mode : 0440
29
- validate : ' visudo -cf %s'
30
- become : yes
31
- when : configure_sudoers
32
-
33
- # TODO: Configure Sublime Text (see templates/sublime/*).
You can’t perform that action at this time.
0 commit comments