From c57aec855e6ff0ff2775b1e06f33d29d616a888a Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Tue, 16 Aug 2022 17:14:36 -0400 Subject: [PATCH] Add bootstrapping docs --- ansible/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ansible/README.md diff --git a/ansible/README.md b/ansible/README.md new file mode 100644 index 0000000..b698806 --- /dev/null +++ b/ansible/README.md @@ -0,0 +1,13 @@ +# Ansible Bootstrapping + +Temporary docs for Ansible as I work things out. + +```bash +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +export PATH="$HOME/.local/bin:$PATH" +python3 -m pip install --user ansible ansible-lint +ansible-galaxy collection install jonellis.sudoers +ansible-galaxy install gantsign.oh-my-zsh +ansible-galaxy install jack1142.apt_signing_key +ansible-playbook -i ansible/ansible_hosts.yaml --ask-become-pass ansible/carbonbean.yaml --verbose +```