Sha256: 643ff6083778c1dc987e27b6b209d75b5e15cebd1fddceb8bd222fb04eaa7b51
Contents?: true
Size: 1.62 KB
Versions: 20
Compression:
Stored size: 1.62 KB
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : ROOT = File.dirname(File.expand_path(__FILE__)) # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "phusion-open-ubuntu-12.04-amd64" config.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/ubuntu-12.04.3-amd64-vbox.box" config.ssh.forward_agent = true passenger_path = File.absolute_path('../passenger', ROOT) if File.directory?(passenger_path) config.vm.synced_folder passenger_path, '/passenger' end passenger_enterprise_path = File.absolute_path('../commercial_passenger', ROOT) if File.directory?(passenger_enterprise_path) config.vm.synced_folder passenger_enterprise_path, '/passenger-enterprise' end config.vm.provider :vmware_fusion do |f, override| override.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/ubuntu-12.04.3-amd64-vmwarefusion.box" f.vmx["displayName"] = "passenger_rpm_automation" end # Add lxc-docker package pkg_cmd = "if [[ -e /usr/bin/docker ]]; then exit; fi; " \ "wget -q -O - https://get.docker.io/gpg | apt-key add -;" \ "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list;" \ "apt-get update -qq; apt-get install -q -y --force-yes lxc-docker git; " # Add vagrant user to the docker group pkg_cmd << "usermod -a -G docker vagrant; " pkg_cmd << "/vagrant/setup-system; " pkg_cmd << "git clone https://github.com/phusion/phusion-server-tools.git /tools" config.vm.provision :shell, :inline => pkg_cmd end
Version data entries
20 entries across 20 versions & 1 rubygems