ansible-playbooks/debianenv-bootstrap.yml

15 lines
576 B
YAML
Raw Normal View History

2013-08-13 12:13:40 +00:00
---
2013-08-13 12:26:59 +00:00
- user: root
2013-08-13 12:33:25 +00:00
hosts: unsetup
2013-08-13 12:26:59 +00:00
tasks:
- name: Install python-apt and aptitude
2013-08-28 13:28:47 +00:00
shell: apt-get update && apt-get -y install python-apt aptitude
- name: Do any package upgrades
apt: upgrade=dist
- name: Install required things
apt: pkg=most,zsh,vim,vim-scripts,git,subversion,tmux,multitail,mtr-tiny,curl,dnsutils,sudo,gnupg,traceroute,htop state=present
2013-08-13 12:26:59 +00:00
- 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