2015-08-17 06:37:14 +02:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
|
|
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
|
|
|
2016-02-08 06:09:48 +01:00
|
|
|
def command?(name)
|
2016-08-18 20:59:36 +02:00
|
|
|
`which #{name} > /dev/null 2>&1`
|
2016-02-08 06:09:48 +01:00
|
|
|
$?.success?
|
|
|
|
end
|
|
|
|
|
2016-11-27 07:31:48 +01:00
|
|
|
if Vagrant::VERSION == "1.8.7" then
|
|
|
|
path = `which curl`
|
|
|
|
if path.include?('/opt/vagrant/embedded/bin/curl') then
|
|
|
|
puts "In Vagrant 1.8.7, curl is broken. Please use Vagrant 1.8.6 "\
|
|
|
|
"or run 'sudo rm -f /opt/vagrant/embedded/bin/curl' to fix the "\
|
|
|
|
"issue before provisioning. See "\
|
|
|
|
"https://github.com/mitchellh/vagrant/issues/7997 "\
|
|
|
|
"for reference."
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-17 06:37:14 +02:00
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
|
|
|
2015-08-18 02:05:53 +02:00
|
|
|
# For LXC. VirtualBox hosts use a different box, described below.
|
2015-08-17 06:37:14 +02:00
|
|
|
config.vm.box = "fgrehm/trusty64-lxc"
|
|
|
|
|
2015-08-18 02:05:53 +02:00
|
|
|
# The Zulip development environment runs on 9991 on the guest.
|
2016-07-07 23:47:59 +02:00
|
|
|
host_port = 9991
|
|
|
|
http_proxy = https_proxy = no_proxy = ""
|
2016-12-30 04:47:04 +01:00
|
|
|
host_ip_addr = "127.0.0.1"
|
2015-08-17 06:37:14 +02:00
|
|
|
|
|
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
|
|
config.vm.synced_folder ".", "/srv/zulip"
|
|
|
|
|
2016-07-07 23:47:59 +02:00
|
|
|
vagrant_config_file = ENV['HOME'] + "/.zulip-vagrant-config"
|
|
|
|
if File.file?(vagrant_config_file)
|
|
|
|
IO.foreach(vagrant_config_file) do |line|
|
2016-04-09 15:06:07 +02:00
|
|
|
line.chomp!
|
|
|
|
key, value = line.split(nil, 2)
|
|
|
|
case key
|
|
|
|
when /^([#;]|$)/; # ignore comments
|
|
|
|
when "HTTP_PROXY"; http_proxy = value
|
|
|
|
when "HTTPS_PROXY"; https_proxy = value
|
|
|
|
when "NO_PROXY"; no_proxy = value
|
2016-07-07 23:47:59 +02:00
|
|
|
when "HOST_PORT"; host_port = value.to_i
|
2016-12-30 04:47:04 +01:00
|
|
|
when "HOST_IP_ADDR"; host_ip_addr = value
|
2016-04-09 15:06:07 +02:00
|
|
|
end
|
|
|
|
end
|
2016-07-07 23:47:59 +02:00
|
|
|
end
|
2016-04-09 15:06:07 +02:00
|
|
|
|
2016-12-30 04:47:04 +01:00
|
|
|
config.vm.network "forwarded_port", guest: 9991, host: host_port, host_ip: host_ip_addr
|
2016-07-07 23:47:59 +02:00
|
|
|
|
|
|
|
if Vagrant.has_plugin?("vagrant-proxyconf")
|
|
|
|
if http_proxy != ""
|
|
|
|
config.proxy.http = http_proxy
|
|
|
|
end
|
|
|
|
if https_proxy != ""
|
|
|
|
config.proxy.https = https_proxy
|
|
|
|
end
|
|
|
|
if https_proxy != ""
|
|
|
|
config.proxy.no_proxy = no_proxy
|
2016-04-09 15:06:07 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-10 01:31:37 +01:00
|
|
|
# Specify LXC provider before VirtualBox provider so it's preferred.
|
|
|
|
config.vm.provider "lxc" do |lxc|
|
2016-02-08 06:09:48 +01:00
|
|
|
if command? "lxc-ls"
|
|
|
|
LXC_VERSION = `lxc-ls --version`.strip unless defined? LXC_VERSION
|
|
|
|
if LXC_VERSION >= "1.1.0"
|
|
|
|
# Allow start without AppArmor, otherwise Box will not Start on Ubuntu 14.10
|
|
|
|
# see https://github.com/fgrehm/vagrant-lxc/issues/333
|
|
|
|
lxc.customize 'aa_allow_incomplete', 1
|
|
|
|
end
|
Vagrantfile: Fix using Vagrant with LXC >= 2.
Apparently LXC 2 removed support for the `-B best` option in
lxc-create, and Vagrant hasn't been updated appropriately yet, so we
need to add a workaround to explicitly specify a backing store.
Fixes #718.
This manifested as errors of the form:
"""
There was an error executing ["sudo",
"/usr/local/bin/vagrant-lxc-wrapper", "lxc-create", "-B", "best",
"--template",
"/home/tabbott/.vagrant.d/gems/gems/vagrant-lxc-1.2.1/scripts/lxc-template",
"--name", "zulip_default_1461801696512_85064", "--", "--tarball",
"/home/tabbott/.vagrant.d/boxes/fgrehm-VAGRANTSLASH-trusty64-lxc/1.2.0/lxc/rootfs.tar.gz",
"--config",
"/home/tabbott/.vagrant.d/boxes/fgrehm-VAGRANTSLASH-trusty64-lxc/1.2.0/lxc/lxc-config"]
"""
2016-04-28 02:06:37 +02:00
|
|
|
if LXC_VERSION >= "2.0.0"
|
|
|
|
lxc.backingstore = 'dir'
|
|
|
|
end
|
2016-01-10 01:31:37 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-17 19:18:40 +02:00
|
|
|
config.vm.provider "virtualbox" do |vb, override|
|
2015-08-17 06:37:14 +02:00
|
|
|
override.vm.box = "ubuntu/trusty64"
|
2016-07-21 03:39:54 +02:00
|
|
|
# It's possible we can get away with just 1.5GB; more testing needed
|
|
|
|
vb.memory = 2048
|
2016-09-08 04:22:21 +02:00
|
|
|
vb.cpus = 2
|
2015-08-17 06:37:14 +02:00
|
|
|
end
|
2015-08-17 20:14:52 +02:00
|
|
|
|
2016-09-08 04:30:48 +02:00
|
|
|
config.vm.provider "vmware_fusion" do |vb, override|
|
|
|
|
override.vm.box = "puphpet/ubuntu1404-x64"
|
|
|
|
vb.vmx["memsize"] = "2048"
|
|
|
|
vb.vmx["numvcpus"] = "2"
|
|
|
|
end
|
|
|
|
|
2015-08-19 04:14:50 +02:00
|
|
|
$provision_script = <<SCRIPT
|
|
|
|
set -x
|
|
|
|
set -e
|
2016-07-06 23:29:33 +02:00
|
|
|
set -o pipefail
|
2016-11-22 00:48:00 +01:00
|
|
|
# If the host is running SELinux remount the /sys/fs/selinux directory as read only,
|
|
|
|
# needed for apt-get to work.
|
|
|
|
if [ -d "/sys/fs/selinux" ]; then
|
|
|
|
sudo mount -o remount,ro /sys/fs/selinux
|
|
|
|
fi
|
2016-06-16 12:50:54 +02:00
|
|
|
ln -nsf /srv/zulip ~/zulip
|
2016-11-22 01:44:16 +01:00
|
|
|
/srv/zulip/tools/provision.py | sudo tee -a /var/log/zulip_provision.log
|
2015-08-19 04:14:50 +02:00
|
|
|
SCRIPT
|
|
|
|
|
|
|
|
config.vm.provision "shell",
|
|
|
|
# We want provision.py to be run with the permissions of the vagrant user.
|
|
|
|
privileged: false,
|
|
|
|
inline: $provision_script
|
2015-08-17 06:37:14 +02:00
|
|
|
end
|