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,11 @@
---
- name: install golang
shell: curl https://go.googlecode.com/files/go1.2.linux-amd64.tar.gz | tar -zxC /usr/local
creates=/usr/local/go
- name: configure path
copy: src=golang.sh
dest=/etc/profile.d/golang.sh
owner=root
group=root
mode=0644