Skip to content

Automated Mac setup and configuration with Ansible

License

Notifications You must be signed in to change notification settings

bmealhouse/mac-playbooks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ansible Playbooks

Automated Mac setup and configuration with Ansible

These playbooks install and configure most of the Mac software I use for software development.

Installation

  1. Ensure Apple's command line tools are installed (xcode-select --install to launch the installer).

  2. Ensure pipx is available

    brew install pipx python-setuptools
    pipx ensurepath
  3. Install Ansible:

    pipx install ansible-core
    pipx install ansible-lint yamllint
  4. Download this repository to your mac.

  5. Run ansible-galaxy to install required Ansible roles.

    ansible-galaxy install -r requirements.yml
  6. Run ansible-playbook to execute a playbook.

    ansible-playbook dev/main.yml --ask-vault-pass --ask-become-pass

Note: If some Homebrew commands fail, you might need to agree to Xcode's license or fix some other Brew issue. Run brew doctor to see if this is the case.

Usage

Execute full playbook

ansible-playbook dev/main.yml --ask-vault-pass --ask-become-pass

Update machine using playbook tags

ansible-playbook dev/main.yml -t up

System settings

How to find the domain & key responsible for a setting

mkdir -p .diff
defaults read > .diff/before
defaults read > .diff/after
code --diff .diff/before .diff/after

See pawelgrzybek blog post

Inspiration

About

Automated Mac setup and configuration with Ansible

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages