-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary of Changes ------------------ * Rename role variables with `osx_clt_` prefix * DRY up install task `when` condition by moving tasks to a `block` * Detection of `ansible_distribution` is now an `assert`ion. * Add Command Line Tools tmp file path to vars * Update README with new variables as a table
- Loading branch information
1 parent
f17776a
commit 2907a15
Showing
6 changed files
with
51 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
# defaults file for ansible-osx-command-line-tools | ||
|
||
force_install: no | ||
osx_clt_force_install: no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
--- | ||
# vars file for ansible-osx-command-line-tools | ||
|
||
clt_path: /Library/Developer/CommandLineTools | ||
osx_clt_path: /Library/Developer/CommandLineTools | ||
osx_clt_tmp_file: /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress |