Initial commit

This commit is contained in:
Oliver Davies 2015-11-16 13:04:29 +00:00
commit a4bde3b4f3
4 changed files with 40 additions and 0 deletions

24
config.yml Normal file
View file

@ -0,0 +1,24 @@
---
dotfiles_repo: "https://github.com/opdavies/dotfiles.git"
dotfiles_repo_local_destination: "~/.dotfiles"
dotfiles_files:
- .gitconfig
- .gitignore-global
homebrew_installed_packages:
- ssh-copy-id
- wget
homebrew_cask_apps:
- alfred
- cyberduck
- filezilla
- firefox
- google-chome
- hipchat
- iterm2
- sequel-pro
- skype
- sublime-text
- phpstorm
- virtualbox

2
inventory Normal file
View file

@ -0,0 +1,2 @@
[local]
127.0.0.1 ansible_connection=local

10
playbook.yml Normal file
View file

@ -0,0 +1,10 @@
---
- hosts: all
vars_files:
- config.yml
roles:
- { role: geerlingguy.homebrew, tags: brew }
- { role: geerlingguy.dotfiles, tags: dotfiles }
- { role: opdavies.sculpin, tags: sculpin }

4
requirements.yml Normal file
View file

@ -0,0 +1,4 @@
---
- src: geerlingguy.homebrew
- src: geerlingguy.dotfiles
- src: opdavies.sculpin