Add Ansible provisioning of Vagrant env

This commit is contained in:
Martin Polden
2014-01-26 20:59:29 +01:00
parent 137052410b
commit a67a47a93f
10 changed files with 74 additions and 23 deletions

View File

@ -0,0 +1,2 @@
export GOPATH=/vagrant
cd /vagrant

View File

@ -0,0 +1,24 @@
---
- name: install packages
apt: pkg={{ item }} state=latest update_cache=yes cache_valid_time=3600
with_items:
- gdb
- git
- make
- mercurial
environment:
LANG: en_US.UTF-8
- name: hide login message
copy: dest=/home/vagrant/.hushlogin
content=
owner=vagrant
group=vagrant
mode=0644
- name: install bash_profile
copy: src=dot.bash_profile
dest=/home/vagrant/.bash_profile
owner=vagrant
group=vagrant
mode=0644