Skip to content

Commit 489ee9b

Browse files
committed
Fixes #42: Add configure_dotfiles variable so you can disable dotfiles management.
1 parent ddb070f commit 489ee9b

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Packages (installed with Homebrew):
9797
- wget
9898
- wrk
9999

100-
My [dotfiles](https://github.com/geerlingguy/dotfiles) are also installed into the current user's home directory, including the `.osx` dotfile for configuring many aspects of macOS for better performance and ease of use.
100+
My [dotfiles](https://github.com/geerlingguy/dotfiles) are also installed into the current user's home directory, including the `.osx` dotfile for configuring many aspects of macOS for better performance and ease of use. You can disable dotfiles management by setting `configure_dotfiles: no` in your configuration.
101101

102102
Finally, there are a few other preferences and settings added on for various apps and services.
103103

default.config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
downloads: ~/.ansible-downloads/
33

4+
configure_dotfiles: yes
45
configure_sudoers: yes
56
configure_terminal: yes
67
configure_osx: yes

main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- role: geerlingguy.homebrew
1616
tags: ['homebrew']
1717
- role: geerlingguy.dotfiles
18+
when: configure_dotfiles
1819
tags: ['dotfiles']
1920
- role: geerlingguy.mas
2021
when: mas_installed_apps

0 commit comments

Comments
 (0)