[vagrant-up] working with Ubuntu 14.04, Virtualbox, and AWS

2014-06-04 Thread Dan Tenenbaum
Hello, I'm a vagrant n00b. I'd like find a 64-bit Ubuntu 14.04 LTS box that I could use that would just work with both Virtualbox and AWS. There doesn't appear to be a 14.04 box for AWS: https://vagrantcloud.com/search?provider=awsq=14.04sort=utf8=%E2%9C%93 But there are a few for

Re: [vagrant-up] working with Ubuntu 14.04, Virtualbox, and AWS

2014-06-04 Thread Torben Knerr
Hi Dan, with vagrant-aws you are in luck because its basically just an empty dummy box, see here: https://github.com/mitchellh/vagrant-aws/#quick-start You can unzip the dummy.box file from here and have a look inside, then you'll see why it's called a dummy box:

Re: [vagrant-up] working with Ubuntu 14.04, Virtualbox, and AWS

2014-06-04 Thread Dan Tenenbaum
Nice! I got it to work (the rsync is a little flaky but that's another thread). So if I understand this correctly, I can set up two config.provider.vm sections in my Vagrantfile, one for Virtualbox and one for AWS, and the appropriate one will be used depending on the --provider switch. As