From 357eb4ce0389ed0790ceb1ca62f2911e7aef3ce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Sch=C3=B6ldstr=C3=B6m?= Date: Fri, 2 Jun 2017 23:54:09 -0500 Subject: [PATCH 1/2] Issue #50: Update installation steps with xcode before ansible --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 76a1be3..271c6f2 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ This is a work in progress, and is mostly a means for me to document my current ## Installation - 1. [Install Ansible](http://docs.ansible.com/intro_installation.html). - 2. Ensure Apple's command line tools are installed (`xcode-select --install` to launch the installer). + 1. Ensure Apple's command line tools are installed (`xcode-select --install` to launch the installer). + 2. [Install Ansible](http://docs.ansible.com/intro_installation.html). 3. Clone this repository to your local drive. 4. Run `$ ansible-galaxy install -r requirements.yml` inside this directory to install required Ansible roles. 5. Run `ansible-playbook main.yml -i inventory -K` inside this directory. Enter your account password when prompted. From 3b83513bbd5d5c2c8869dba1452a8e4372203361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Sch=C3=B6ldstr=C3=B6m?= Date: Fri, 2 Jun 2017 23:54:27 -0500 Subject: [PATCH 2/2] Fix typo in README example command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 271c6f2..3016dc8 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ This is a work in progress, and is mostly a means for me to document my current You can filter which part of the provisioning process to run by specifying a set of tags using `ansible-playbook`'s `--tags` flag. The tags available are `dotfiles`, `homebrew`, `mas` and `osx`. - ansible-playook main.yml -i inventory -K --tags "dotfiles,homebrew" + ansible-playbook main.yml -i inventory -K --tags "dotfiles,homebrew" ## Overriding Defaults