15 lines
576 B
YAML
15 lines
576 B
YAML
---
|
|
- user: root
|
|
hosts: unsetup
|
|
tasks:
|
|
- name: Install python-apt and aptitude
|
|
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
|
|
- 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
|