-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add ansible playbook to install/update homebrew packages
- Loading branch information
Showing
4 changed files
with
50 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[defaults] | ||
deprecation_warnings=False | ||
inventory = hosts.ini | ||
host_key_checking = False | ||
#roles_path = |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[all] | ||
localhost ansible_connection=local |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
|
||
- name: Preparing the base environment | ||
hosts: localhost | ||
|
||
tasks: | ||
- name: install or update homebrew packages | development tools | ||
community.general.homebrew: | ||
name: | ||
- coreutils | ||
- git | ||
- gh | ||
- tig | ||
- pre-commit | ||
- terraform-docs | ||
- tmux | ||
- jq | ||
- tree | ||
state: latest | ||
- name: install or update homebrew packages | networking tools | ||
community.general.homebrew: | ||
name: | ||
- nmap | ||
- ipcalc | ||
- iperf3 | ||
- putty | ||
- wget | ||
state: latest | ||
- name: install or update homebrew packages | cloud CLIs | ||
community.general.homebrew: | ||
name: | ||
- oci-cli | ||
- awscli | ||
- azure-cli | ||
- google-cloud-sdk | ||
state: latest | ||
... |