mirror of https://github.com/zulip/zulip.git
Vagrantfile: Check for OS before patching the lxc-config.
Followup of e68b45d089
Without this vagrant up will fail on Windows.
https://chat.zulip.org/#narrow/stream/development.20help/topic/
Vagrant.20up.20error
This commit is contained in:
parent
b12a5a2da0
commit
718b3fcd6a
|
@ -31,7 +31,8 @@ end
|
||||||
# have the box (e.g. on first setup), Vagrant would download it but too
|
# have the box (e.g. on first setup), Vagrant would download it but too
|
||||||
# late for us to patch it like this; so we prompt them to explicitly add it
|
# late for us to patch it like this; so we prompt them to explicitly add it
|
||||||
# first and then rerun.
|
# first and then rerun.
|
||||||
if ['up', 'provision'].include? ARGV[0]
|
if Vagrant::Util::Platform.linux?
|
||||||
|
if ['up', 'provision'].include? ARGV[0]
|
||||||
LXC_VERSION = `lxc-ls --version`.strip unless defined? LXC_VERSION
|
LXC_VERSION = `lxc-ls --version`.strip unless defined? LXC_VERSION
|
||||||
if LXC_VERSION == "2.1.0"
|
if LXC_VERSION == "2.1.0"
|
||||||
lxc_config_file = ENV['HOME'] + "/.vagrant.d/boxes/fgrehm-VAGRANTSLASH-trusty64-lxc/1.2.0/lxc/lxc-config"
|
lxc_config_file = ENV['HOME'] + "/.vagrant.d/boxes/fgrehm-VAGRANTSLASH-trusty64-lxc/1.2.0/lxc/lxc-config"
|
||||||
|
@ -52,6 +53,7 @@ if ['up', 'provision'].include? ARGV[0]
|
||||||
exit
|
exit
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Workaround: Vagrant removed the atlas.hashicorp.com to
|
# Workaround: Vagrant removed the atlas.hashicorp.com to
|
||||||
|
|
Loading…
Reference in New Issue