Ansible setup for my Mac
The following steps will install dependencies and run the installation steps.
xcode-select --install
Create an SSH config file...
vim ~/.ssh/config
and add the following:
Host *
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_ed25519
Generate an SSH key and add it to the key agent:
ssh-keygen -t ed25519 -C "charlie@workstation-mba2011"
eval "$(ssh-agent -s)"
ssh-add -K ~/.ssh/id_ed25519
cd scripts/
./bootstrap-mac.sh
ansible-galaxy install -r meta/requirements.yaml
ansible-playbook playbooks/personal.yaml --ask-become-pass