Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ttskch/ansible-mac
My macOS provisioner with ansible.
https://github.com/ttskch/ansible-mac
Last synced: 16 days ago
JSON representation
My macOS provisioner with ansible.
- Host: GitHub
- URL: https://github.com/ttskch/ansible-mac
- Owner: ttskch
- Created: 2015-02-07T07:07:49.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2024-10-16T00:15:58.000Z (28 days ago)
- Last Synced: 2024-10-17T11:40:53.827Z (27 days ago)
- Language: Vim Snippet
- Homepage:
- Size: 169 KB
- Stars: 18
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# macOS provisioner
## Usage
### Prepare
```bash
$ brew update
$ brew install python ansible
```### Execute
```bash
# e.g. execute all with sudo
$ ansible-playbook localhost.yml -i hosts -K# e.g. only install brew packages
$ ansible-playbook localhost.yml -i hosts --tags=brew# e.g. execute all except installing brew and brew-cask packages
$ ansible-playbook localhost.yml -i hosts --skip-tags=brew,cask
```