mirror of
https://github.com/mpolden/echoip.git
synced 2025-06-26 04:37:51 +02:00
Add Ansible provisioning of Vagrant env
This commit is contained in:
31
Vagrantfile
vendored
31
Vagrantfile
vendored
@ -1,33 +1,18 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
$script = <<SCRIPT
|
||||
# Ensure noninteractive apt-get
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Set time zone
|
||||
echo "Europe/Oslo" > /etc/timezone
|
||||
dpkg-reconfigure tzdata
|
||||
|
||||
# Install packages
|
||||
apt-get -y --quiet update
|
||||
apt-get -y --quiet install git make
|
||||
|
||||
# Install golang
|
||||
test -d /usr/local/go || \
|
||||
curl https://go.googlecode.com/files/go1.1.2.linux-amd64.tar.gz | \
|
||||
tar -xzC /usr/local
|
||||
test -s /etc/profile.d/golang.sh || \
|
||||
echo 'export PATH=/usr/local/go/bin:$PATH' > /etc/profile.d/golang.sh
|
||||
SCRIPT
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "raring64-current"
|
||||
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/raring/current/raring-server-cloudimg-amd64-vagrant-disk1.box"
|
||||
config.vm.box = "precise64-current"
|
||||
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box"
|
||||
config.vm.network :forwarded_port, guest: 8080, host: 5000
|
||||
config.vm.network :private_network, ip: "172.16.5.10"
|
||||
config.vm.synced_folder ".", "/vagrant", nfs: true
|
||||
config.ssh.forward_agent = true
|
||||
config.vm.provider :virtualbox do |vb|
|
||||
vb.customize ["modifyvm", :id, "--memory", "1024"]
|
||||
end
|
||||
config.vm.provision :shell, :inline => $script
|
||||
config.vm.provision "ansible" do |ansible|
|
||||
ansible.playbook = "provisioning/playbook.yml"
|
||||
ansible.inventory_path = "provisioning/development"
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user