├── README.md ├── ansible ├── group_vars │ ├── all.yml │ ├── osx_base.yml │ ├── osx_config_app.yml │ ├── osx_config_sys.yml │ └── osx_packages.yml ├── inventories │ └── osx.ini ├── playbook.yml └── roles │ ├── bower │ └── tasks │ │ └── main.yml │ ├── configapp │ └── tasks │ │ ├── finder.yml │ │ ├── main.yml │ │ ├── safari.yml │ │ ├── textedit.yml │ │ └── transmission.yml │ ├── configsys │ └── tasks │ │ ├── main.yml │ │ ├── preferences.yml │ │ └── system.yml │ ├── git │ ├── files │ │ ├── gitconfig │ │ └── gitignore │ └── tasks │ │ └── main.yml │ ├── gulpjs │ └── tasks │ │ └── main.yml │ ├── homebrew │ └── tasks │ │ ├── brews.yml │ │ ├── casks.yml │ │ ├── grouppermissions.yml │ │ ├── main.yml │ │ └── taps.yml │ ├── nginx │ └── tasks │ │ └── main.yml │ ├── nodejs │ └── tasks │ │ └── main.yml │ ├── ohmyzsh │ ├── files │ │ ├── com.googlecode.iterm2.plist │ │ ├── zsh-aliases │ │ └── zshrc │ └── tasks │ │ ├── install.yml │ │ ├── iterm.yml │ │ ├── main.yml │ │ ├── plugins.yml │ │ ├── powerline_fonts.yml │ │ ├── terminal.yml │ │ └── theme.yml │ ├── postgres │ ├── handlers │ │ └── main.yml │ └── tasks │ │ └── main.yml │ ├── preamble │ └── tasks │ │ └── main.yml │ └── ssh │ ├── files │ └── config │ └── tasks │ ├── authorized_keys.yml │ └── main.yml └── bootstrap.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/README.md -------------------------------------------------------------------------------- /ansible/group_vars/all.yml: -------------------------------------------------------------------------------- 1 | # file: group_vars/all.yml 2 | --- 3 | ruby: 4 | version: 2.0.0-p451 5 | -------------------------------------------------------------------------------- /ansible/group_vars/osx_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/group_vars/osx_base.yml -------------------------------------------------------------------------------- /ansible/group_vars/osx_config_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/group_vars/osx_config_app.yml -------------------------------------------------------------------------------- /ansible/group_vars/osx_config_sys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/group_vars/osx_config_sys.yml -------------------------------------------------------------------------------- /ansible/group_vars/osx_packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/group_vars/osx_packages.yml -------------------------------------------------------------------------------- /ansible/inventories/osx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/inventories/osx.ini -------------------------------------------------------------------------------- /ansible/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/bower/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/bower/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/configapp/tasks/finder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/configapp/tasks/finder.yml -------------------------------------------------------------------------------- /ansible/roles/configapp/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/configapp/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/configapp/tasks/safari.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/configapp/tasks/safari.yml -------------------------------------------------------------------------------- /ansible/roles/configapp/tasks/textedit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/configapp/tasks/textedit.yml -------------------------------------------------------------------------------- /ansible/roles/configapp/tasks/transmission.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/configapp/tasks/transmission.yml -------------------------------------------------------------------------------- /ansible/roles/configsys/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/configsys/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/configsys/tasks/preferences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/configsys/tasks/preferences.yml -------------------------------------------------------------------------------- /ansible/roles/configsys/tasks/system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/configsys/tasks/system.yml -------------------------------------------------------------------------------- /ansible/roles/git/files/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/git/files/gitconfig -------------------------------------------------------------------------------- /ansible/roles/git/files/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/git/files/gitignore -------------------------------------------------------------------------------- /ansible/roles/git/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/git/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/gulpjs/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/gulpjs/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/homebrew/tasks/brews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/homebrew/tasks/brews.yml -------------------------------------------------------------------------------- /ansible/roles/homebrew/tasks/casks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/homebrew/tasks/casks.yml -------------------------------------------------------------------------------- /ansible/roles/homebrew/tasks/grouppermissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/homebrew/tasks/grouppermissions.yml -------------------------------------------------------------------------------- /ansible/roles/homebrew/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/homebrew/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/homebrew/tasks/taps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/homebrew/tasks/taps.yml -------------------------------------------------------------------------------- /ansible/roles/nginx/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/nginx/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/nodejs/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/nodejs/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/files/com.googlecode.iterm2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/files/com.googlecode.iterm2.plist -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/files/zsh-aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/files/zsh-aliases -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/files/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/files/zshrc -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/tasks/install.yml -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/tasks/iterm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/tasks/iterm.yml -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/tasks/plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/tasks/plugins.yml -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/tasks/powerline_fonts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/tasks/powerline_fonts.yml -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/tasks/terminal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/tasks/terminal.yml -------------------------------------------------------------------------------- /ansible/roles/ohmyzsh/tasks/theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ohmyzsh/tasks/theme.yml -------------------------------------------------------------------------------- /ansible/roles/postgres/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/postgres/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/postgres/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/postgres/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/preamble/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/preamble/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/ssh/files/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ssh/files/config -------------------------------------------------------------------------------- /ansible/roles/ssh/tasks/authorized_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ssh/tasks/authorized_keys.yml -------------------------------------------------------------------------------- /ansible/roles/ssh/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/ansible/roles/ssh/tasks/main.yml -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reecefowell/provision-ansible-mac/HEAD/bootstrap.sh --------------------------------------------------------------------------------