From 43b3f1f7b945bb0670f55e0755e6000654717eb5 Mon Sep 17 00:00:00 2001 From: Ryan Walder Date: Fri, 11 Jan 2019 16:05:37 +0000 Subject: [PATCH] Add all my changes in one big commit --- Vagrantfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index b2631ef..b38080b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,16 +3,20 @@ # NOTE: This Vagrantfile isn't actually meant to do anything, it's just the # "code" we're using for the examples in the repo. +disk = './secondDisk.vdi' + Vagrant.configure("2") do |config| - config.vm.box = "precise32" - config.vm.hostname = "myprecise.box" - config.vm.network :private_network, ip: "192.168.0.42" + config.vm.box = "xenial64" + config.vm.hostname = "cs-vagrant-test-xenial-01.gel.zone" + config.vm.network :private_network, ip: "192.168.66.42" config.vm.provider :virtualbox do |vb| vb.customize [ "modifyvm", :id, "--cpuexecutioncap", "50", - "--memory", "256", + "--memory", "512", ] + vb.customize ['createhd', '--filename', disk, '--variant', 'Fixed', '--size', 20 * 1024] + vb.customize ['storageattach', :id, '--storagectl', 'SATAController', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', disk] end end