Add a Debian env bootstrap playbook.

This commit is contained in:
staticsafe 2013-08-13 08:13:40 -04:00
parent ffc04adc2e
commit 81c36b05bc
1 changed files with 11 additions and 0 deletions

11
debianenv-bootstrap.yml Normal file
View File

@ -0,0 +1,11 @@
---
user: root
tasks:
- name: Install python-apt and aptitude
shell: apt-get update && apt-get install python-apt aptitude
- name: Do any package upgrades and install required things
apt: upgrade=dist pkg=most,zsh,vim,vim-scripts,git,subversion,tmux,multitail,mtr-tiny,curl,dnsutils,sudo
- name: Get dotfiles repo
git: repo=https://github.com/staticsafe/dotfiles.git dest=~/dotfiles
- name: Run envsetup script from dotfiles repo
shell: ~/dotfiles/envsetup.sh >> bootstrap.txt