2013-02-04 01:02:41 -05:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
2013-05-03 18:35:51 -04:00
|
|
|
BOX_NAME = ENV['BOX_NAME'] || "ubuntu"
|
|
|
|
BOX_URI = ENV['BOX_URI'] || "http://files.vagrantup.com/precise64.box"
|
2013-06-02 17:08:41 -04:00
|
|
|
VF_BOX_URI = ENV['BOX_URI'] || "http://files.vagrantup.com/precise64_vmware_fusion.box"
|
2013-11-06 22:16:56 -05:00
|
|
|
AWS_BOX_URI = ENV['BOX_URI'] || "https://github.com/mitchellh/vagrant-aws/raw/master/dummy.box"
|
2013-05-11 13:27:42 -04:00
|
|
|
AWS_REGION = ENV['AWS_REGION'] || "us-east-1"
|
2013-11-06 22:16:56 -05:00
|
|
|
AWS_AMI = ENV['AWS_AMI'] || "ami-69f5a900"
|
|
|
|
AWS_INSTANCE_TYPE = ENV['AWS_INSTANCE_TYPE'] || 't1.micro'
|
|
|
|
|
2013-06-07 15:56:39 -04:00
|
|
|
FORWARD_DOCKER_PORTS = ENV['FORWARD_DOCKER_PORTS']
|
2013-04-23 12:44:09 -04:00
|
|
|
|
2013-11-06 22:16:56 -05:00
|
|
|
SSH_PRIVKEY_PATH = ENV["SSH_PRIVKEY_PATH"]
|
|
|
|
|
|
|
|
# A script to upgrade from the 12.04 kernel to the raring backport kernel (3.8)
|
|
|
|
# and install docker.
|
|
|
|
$script = <<SCRIPT
|
|
|
|
# The username to add to the docker group will be passed as the first argument
|
|
|
|
# to the script. If nothing is passed, default to "vagrant".
|
|
|
|
user="$1"
|
|
|
|
if [ -z "$user" ]; then
|
|
|
|
user=vagrant
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Adding an apt gpg key is idempotent.
|
2013-12-27 10:18:40 -05:00
|
|
|
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
|
2013-11-06 22:16:56 -05:00
|
|
|
|
2013-12-13 00:09:05 -05:00
|
|
|
# Creating the docker.list file is idempotent, but it may overwrite desired
|
2013-11-06 22:16:56 -05:00
|
|
|
# settings if it already exists. This could be solved with md5sum but it
|
|
|
|
# doesn't seem worth it.
|
|
|
|
echo 'deb http://get.docker.io/ubuntu docker main' > \
|
|
|
|
/etc/apt/sources.list.d/docker.list
|
|
|
|
|
|
|
|
# Update remote package metadata. 'apt-get update' is idempotent.
|
|
|
|
apt-get update -q
|
|
|
|
|
|
|
|
# Install docker. 'apt-get install' is idempotent.
|
|
|
|
apt-get install -q -y lxc-docker
|
|
|
|
|
|
|
|
usermod -a -G docker "$user"
|
|
|
|
|
|
|
|
tmp=`mktemp -q` && {
|
2013-12-13 00:09:05 -05:00
|
|
|
# Only install the backport kernel, don't bother upgrading if the backport is
|
2013-11-06 22:16:56 -05:00
|
|
|
# already installed. We want parse the output of apt so we need to save it
|
|
|
|
# with 'tee'. NOTE: The installation of the kernel will trigger dkms to
|
|
|
|
# install vboxguest if needed.
|
|
|
|
apt-get install -q -y --no-upgrade linux-image-generic-lts-raring | \
|
|
|
|
tee "$tmp"
|
|
|
|
|
|
|
|
# Parse the number of installed packages from the output
|
|
|
|
NUM_INST=`awk '$2 == "upgraded," && $4 == "newly" { print $3 }' "$tmp"`
|
|
|
|
rm "$tmp"
|
|
|
|
}
|
|
|
|
|
|
|
|
# If the number of installed packages is greater than 0, we want to reboot (the
|
|
|
|
# backport kernel was installed but is not running).
|
|
|
|
if [ "$NUM_INST" -gt 0 ];
|
|
|
|
then
|
|
|
|
echo "Rebooting down to activate new kernel."
|
|
|
|
echo "/vagrant will not be mounted. Use 'vagrant halt' followed by"
|
|
|
|
echo "'vagrant up' to ensure /vagrant is mounted."
|
|
|
|
shutdown -r now
|
|
|
|
fi
|
|
|
|
SCRIPT
|
|
|
|
|
|
|
|
# We need to install the virtualbox guest additions *before* we do the normal
|
|
|
|
# docker installation. As such this script is prepended to the common docker
|
|
|
|
# install script above. This allows the install of the backport kernel to
|
|
|
|
# trigger dkms to build the virtualbox guest module install.
|
|
|
|
$vbox_script = <<VBOX_SCRIPT + $script
|
|
|
|
# Install the VirtualBox guest additions if they aren't already installed.
|
2014-01-01 23:56:29 -05:00
|
|
|
if [ ! -d /opt/VBoxGuestAdditions-4.3.6/ ]; then
|
2013-11-06 22:16:56 -05:00
|
|
|
# Update remote package metadata. 'apt-get update' is idempotent.
|
|
|
|
apt-get update -q
|
|
|
|
|
|
|
|
# Kernel Headers and dkms are required to build the vbox guest kernel
|
|
|
|
# modules.
|
|
|
|
apt-get install -q -y linux-headers-generic-lts-raring dkms
|
|
|
|
|
|
|
|
echo 'Downloading VBox Guest Additions...'
|
2014-01-01 23:56:29 -05:00
|
|
|
wget -cq http://dlc.sun.com.edgesuite.net/virtualbox/4.3.6/VBoxGuestAdditions_4.3.6.iso
|
|
|
|
echo "95648fcdb5d028e64145a2fe2f2f28c946d219da366389295a61fed296ca79f0 VBoxGuestAdditions_4.3.6.iso" | sha256sum --check || exit 1
|
2013-11-06 22:16:56 -05:00
|
|
|
|
2014-01-01 23:56:29 -05:00
|
|
|
mount -o loop,ro /home/vagrant/VBoxGuestAdditions_4.3.6.iso /mnt
|
2013-11-06 22:16:56 -05:00
|
|
|
/mnt/VBoxLinuxAdditions.run --nox11
|
|
|
|
umount /mnt
|
|
|
|
fi
|
|
|
|
VBOX_SCRIPT
|
|
|
|
|
2013-04-23 12:44:09 -04:00
|
|
|
Vagrant::Config.run do |config|
|
|
|
|
# Setup virtual machine box. This VM configuration code is always executed.
|
|
|
|
config.vm.box = BOX_NAME
|
|
|
|
config.vm.box_url = BOX_URI
|
2013-05-08 22:36:06 -04:00
|
|
|
|
2013-11-06 22:16:56 -05:00
|
|
|
# Use the specified private key path if it is specified and not empty.
|
|
|
|
if SSH_PRIVKEY_PATH
|
|
|
|
config.ssh.private_key_path = SSH_PRIVKEY_PATH
|
2013-03-22 01:26:18 -04:00
|
|
|
end
|
2013-04-19 23:57:50 -04:00
|
|
|
|
2013-11-06 22:16:56 -05:00
|
|
|
config.ssh.forward_agent = true
|
|
|
|
end
|
2013-05-08 22:36:06 -04:00
|
|
|
|
2013-04-23 12:44:09 -04:00
|
|
|
# Providers were added on Vagrant >= 1.1.0
|
2013-11-06 22:16:56 -05:00
|
|
|
#
|
|
|
|
# NOTE: The vagrant "vm.provision" appends its arguments to a list and executes
|
|
|
|
# them in order. If you invoke "vm.provision :shell, :inline => $script"
|
|
|
|
# twice then vagrant will run the script two times. Unfortunately when you use
|
|
|
|
# providers and the override argument to set up provisioners (like the vbox
|
|
|
|
# guest extensions) they 1) don't replace the other provisioners (they append
|
|
|
|
# to the end of the list) and 2) you can't control the order the provisioners
|
|
|
|
# are executed (you can only append to the list). If you want the virtualbox
|
|
|
|
# only script to run before the other script, you have to jump through a lot of
|
|
|
|
# hoops.
|
|
|
|
#
|
|
|
|
# Here is my only repeatable solution: make one script that is common ($script)
|
|
|
|
# and another script that is the virtual box guest *prepended* to the common
|
|
|
|
# script. Only ever use "vm.provision" *one time* per provider. That means
|
|
|
|
# every single provider has an override, and every single one configures
|
|
|
|
# "vm.provision". Much saddness, but such is life.
|
2013-04-23 12:44:09 -04:00
|
|
|
Vagrant::VERSION >= "1.1.0" and Vagrant.configure("2") do |config|
|
2013-04-19 23:57:50 -04:00
|
|
|
config.vm.provider :aws do |aws, override|
|
2013-11-06 22:16:56 -05:00
|
|
|
username = "ubuntu"
|
|
|
|
override.vm.box_url = AWS_BOX_URI
|
|
|
|
override.vm.provision :shell, :inline => $script, :args => username
|
|
|
|
aws.access_key_id = ENV["AWS_ACCESS_KEY"]
|
|
|
|
aws.secret_access_key = ENV["AWS_SECRET_KEY"]
|
2013-04-19 23:57:50 -04:00
|
|
|
aws.keypair_name = ENV["AWS_KEYPAIR_NAME"]
|
2013-11-06 22:16:56 -05:00
|
|
|
override.ssh.username = username
|
2013-05-11 13:27:42 -04:00
|
|
|
aws.region = AWS_REGION
|
|
|
|
aws.ami = AWS_AMI
|
2013-11-06 22:16:56 -05:00
|
|
|
aws.instance_type = AWS_INSTANCE_TYPE
|
2013-04-19 23:57:50 -04:00
|
|
|
end
|
|
|
|
|
2013-11-06 22:16:56 -05:00
|
|
|
config.vm.provider :rackspace do |rs, override|
|
|
|
|
override.vm.provision :shell, :inline => $script
|
2013-04-19 23:57:50 -04:00
|
|
|
rs.username = ENV["RS_USERNAME"]
|
|
|
|
rs.api_key = ENV["RS_API_KEY"]
|
|
|
|
rs.public_key_path = ENV["RS_PUBLIC_KEY"]
|
|
|
|
rs.flavor = /512MB/
|
|
|
|
rs.image = /Ubuntu/
|
|
|
|
end
|
|
|
|
|
2013-06-02 17:08:41 -04:00
|
|
|
config.vm.provider :vmware_fusion do |f, override|
|
|
|
|
override.vm.box_url = VF_BOX_URI
|
|
|
|
override.vm.synced_folder ".", "/vagrant", disabled: true
|
2013-11-06 22:16:56 -05:00
|
|
|
override.vm.provision :shell, :inline => $script
|
2013-06-02 17:08:41 -04:00
|
|
|
f.vmx["displayName"] = "docker"
|
|
|
|
end
|
|
|
|
|
2013-11-06 22:16:56 -05:00
|
|
|
config.vm.provider :virtualbox do |vb, override|
|
|
|
|
override.vm.provision :shell, :inline => $vbox_script
|
2013-09-06 00:05:23 -04:00
|
|
|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
|
|
|
|
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
|
2013-04-19 23:57:50 -04:00
|
|
|
end
|
|
|
|
end
|
2013-06-07 15:56:39 -04:00
|
|
|
|
2013-11-06 22:16:56 -05:00
|
|
|
# If this is a version 1 config, virtualbox is the only option. A version 2
|
|
|
|
# config would have already been set in the above provider section.
|
|
|
|
Vagrant::VERSION < "1.1.0" and Vagrant::Config.run do |config|
|
|
|
|
config.vm.provision :shell, :inline => $vbox_script
|
|
|
|
end
|
|
|
|
|
2013-06-07 15:56:39 -04:00
|
|
|
if !FORWARD_DOCKER_PORTS.nil?
|
2013-08-06 09:21:26 -04:00
|
|
|
Vagrant::VERSION < "1.1.0" and Vagrant::Config.run do |config|
|
|
|
|
(49000..49900).each do |port|
|
|
|
|
config.vm.forward_port port, port
|
2013-06-07 15:56:39 -04:00
|
|
|
end
|
2013-08-06 09:21:26 -04:00
|
|
|
end
|
2013-06-07 15:56:39 -04:00
|
|
|
|
2013-08-06 09:21:26 -04:00
|
|
|
Vagrant::VERSION >= "1.1.0" and Vagrant.configure("2") do |config|
|
|
|
|
(49000..49900).each do |port|
|
|
|
|
config.vm.network :forwarded_port, :host => port, :guest => port
|
2013-06-07 15:56:39 -04:00
|
|
|
end
|
2013-08-06 09:21:26 -04:00
|
|
|
end
|
2013-06-07 15:56:39 -04:00
|
|
|
end
|