Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daviskregers/ansible-setup
Workstation setup on ansible
https://github.com/daviskregers/ansible-setup
ansible ansible-playbooks ansible-roles archlinux macos
Last synced: 11 days ago
JSON representation
Workstation setup on ansible
- Host: GitHub
- URL: https://github.com/daviskregers/ansible-setup
- Owner: daviskregers
- Created: 2022-02-19T11:33:32.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-03T03:57:29.000Z (over 2 years ago)
- Last Synced: 2024-11-27T20:33:07.621Z (2 months ago)
- Topics: ansible, ansible-playbooks, ansible-roles, archlinux, macos
- Language: Python
- Homepage:
- Size: 146 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Setup scripts
This project is used as my attempt to properly create things in ansible. Previously I did a setup which is kind of broken
but helped me to learn the basics for it.Initially everything was set up with broken bash scripts: https://github.com/daviskregers/old-dotfiles
# Resources
- https://docs.ansible.com/ansible/2.3/playbooks_best_practices.html
# Commands
```
ansible-playbook site.yml --limit nas
ansible-playbook nas.yml -K
ansible-playbook -i production site.yml --tags ntp
ansible-playbook -i production webservers.yml --limit boston
ansible-playbook foo.yml --check
ansible-playbook foo.yml --check --diff --limit foo.example.com
```# Dependencies
```
ansible-galaxy collection install geerlingguy.mac
ansible-galaxy install gantsign.visual-studio-code-extensions
```## Virtualization on mac
- https://computingforgeeks.com/install-macos-big-sur-catalina-on-virtualbox/
- https://github.com/myspaghetti/macos-virtualbox### Fix for running macOS on AMD
```
vboxmanage modifyvm macOS --cpu-profile "Intel Xeon X5482 3.20GHz"
```