https://github.com/ttskch/ansible-mac
My macOS provisioner with ansible.
https://github.com/ttskch/ansible-mac
Last synced: 10 months 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 (about 11 years ago)
- Default Branch: main
- Last Pushed: 2025-03-14T01:51:37.000Z (11 months ago)
- Last Synced: 2025-03-14T02:41:29.986Z (11 months ago)
- Language: Vim Snippet
- Homepage:
- Size: 181 KB
- Stars: 18
- Watchers: 2
- 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
```