terraform/Vagrantfile

39 lines
1.0 KiB
Ruby
Raw Normal View History

2014-07-28 00:16:17 +02:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
$script = <<SCRIPT
# Install Go and prerequisites
2014-09-14 00:15:54 +02:00
apt-get -qq update
apt-get -qq install build-essential curl git-core libpcre3-dev mercurial pkg-config zip
2014-09-14 01:10:50 +02:00
hg clone -u release https://code.google.com/p/go /opt/go
cd /opt/go/src && ./all.bash
2014-07-28 00:16:17 +02:00
# Setup the GOPATH
2014-09-13 23:36:32 +02:00
mkdir -p /opt/gopath
cat <<EOF >/etc/profile.d/gopath.sh
2014-07-28 00:16:17 +02:00
export GOPATH="/opt/gopath"
2015-02-09 11:27:00 +01:00
export PATH="/opt/go/bin:$GOPATH/bin:\$PATH"
2014-07-28 00:16:17 +02:00
EOF
# Make sure the GOPATH is usable by vagrant
2014-09-14 01:10:50 +02:00
chown -R vagrant:vagrant /opt/go
2014-09-13 23:36:32 +02:00
chown -R vagrant:vagrant /opt/gopath
2014-07-28 00:16:17 +02:00
SCRIPT
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "chef/ubuntu-12.04"
2014-08-28 18:52:05 +02:00
2014-07-28 00:16:17 +02:00
config.vm.provision "shell", inline: $script
["vmware_fusion", "vmware_workstation"].each do |p|
config.vm.provider "p" do |v|
v.vmx["memsize"] = "2048"
v.vmx["numvcpus"] = "2"
v.vmx["cpuid.coresPerSocket"] = "1"
end
end
end