[vagrant-up] Placing extra disk image next to rest of VirtualBox files?

2017-05-23 Thread Thorbjørn Ravn Andersen
I have a situation where I need a very large root disk on a Ubuntu 14.04 image for some long running integration test scenarios, and we have switched to the official bento/ubuntu-14.04 image as it has a LVM root image which can be expanded. I add an extra "disk" using --- config.vm.provider

[vagrant-up] Importing variables into Vagrantfile via YAML

2017-05-23 Thread William Saxton
So, I've populated a YAML file and loaded it into my Vagrantfile successfully (see below). I know it works, because the "print" statement prints out the value. When I try to assign that value to one of the node variables, though, the variable remains empty. Any ideas? config.yaml --

[vagrant-up] Re: Importing variables into Vagrantfile via YAML

2017-05-23 Thread William Saxton
I'm dumb. Using the variable name "config" was an obvious conflict with: Vagrant.configure("2") do |config| Changing it to a different name fixed it. On Tuesday, May 23, 2017 at 8:30:25 PM UTC-4, William Saxton wrote: > > So, I've populated a YAML file and loaded it into my Vagrantfile > s