Skip to content

Commit

Permalink
Fixes geerlingguy#9: Install required roles in current directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Jun 14, 2016
1 parent e2d8a2f commit b084ebe
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.vagrant
.DS_Store
*.retry
roles*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This is a work in progress, and is mostly a means for me to document my current
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).
3. Clone this repository to your local drive.
4. Run the command `$ ansible-galaxy install -r requirements.txt` inside this directory to install required Ansible roles.
4. Run the command `$ ansible-galaxy install -r requirements.yml` inside this directory to install required Ansible roles.
5. Run `ansible-playbook main.yml -i inventory -u [username] -U [username] --ask-sudo-pass` from the same directory as this README file (substitute `[username]` for your macOS account username). Enter your account password when prompted.

## Included Applications / Configuration
Expand Down
2 changes: 2 additions & 0 deletions ansible.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[defaults]
roles_path = ./roles
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

3 changes: 3 additions & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
- name: geerlingguy.dotfiles
- name: geerlingguy.homebrew

0 comments on commit b084ebe

Please sign in to comment.