Skip to content
Snippets Groups Projects
Commit 2239dd0d authored by niko's avatar niko
Browse files

now using 64bit VMs on dbis-isochrone

parent e081a26d
No related branches found
No related tags found
No related merge requests found
...@@ -20,11 +20,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| ...@@ -20,11 +20,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Hardware configuration # Hardware configuration
config.vm.provider "virtualbox" do |v| config.vm.provider "virtualbox" do |v|
v.name = (isLocalMode ? "isochrone-local" : "isochrone") v.name = (isLocalMode ? "isochrone-local" : "isochrone")
# v.cpus = 2 v.cpus = 2
v.memory = 3072 v.memory = 3072
if ! isLocalMode
v.customize ["modifyvm", :id, "--longmode", "off"]
end
end end
# Enable vagrant-cachier plugin # Enable vagrant-cachier plugin
...@@ -39,13 +36,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| ...@@ -39,13 +36,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# config.vm.box_url = "http://www.krismer.de/files/VM/centos64-x86_64.box" # config.vm.box_url = "http://www.krismer.de/files/VM/centos64-x86_64.box"
# config.vm.box = "centos65-x86_64" # config.vm.box = "centos65-x86_64"
# config.vm.box_url = "https://github.com/2creatives/vagrant-centos/releases/download/v6.5.1/centos65-x86_64-20131205.box" # config.vm.box_url = "https://github.com/2creatives/vagrant-centos/releases/download/v6.5.1/centos65-x86_64-20131205.box"
if isLocalMode config.vm.box = "vagrant-centos-65-x86_64-minimal"
config.vm.box = "vagrant-centos-65-x86_64-minimal" config.vm.box_url = "http://files.brianbirkinbine.com/vagrant-centos-65-x86_64-minimal.box"
config.vm.box_url = "http://files.brianbirkinbine.com/vagrant-centos-65-x86_64-minimal.box" # config.vm.box = "vagrant-centos-65-i386-minimal"
else # config.vm.box_url = "http://files.brianbirkinbine.com/vagrant-centos-65-i386-minimal.box"
config.vm.box = "vagrant-centos-65-i386-minimal"
config.vm.box_url = "http://files.brianbirkinbine.com/vagrant-centos-65-i386-minimal.box"
end
# Setup of shared folders # Setup of shared folders
config.vm.synced_folder "etc/vagrant/conf", "/setup/conf" config.vm.synced_folder "etc/vagrant/conf", "/setup/conf"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment