Getting ready for bootstrap

This commit is contained in:
Fabio Rehm 2013-03-04 20:40:20 -03:00
parent a06b45e6b9
commit ceb6f763df
2 changed files with 12 additions and 3 deletions

View file

@ -97,14 +97,14 @@ get up and running with the [`setup-vagrant-dev-box`](setup-vagrant-dev-box)
script. Feel free to use it :)
```
cp Vagrantfile.dev Vagrantfile
cp Vagrantfile.dev.1.0 Vagrantfile
./setup-vagrant-dev-box
vagrant ssh
```
*NOTE: `setup-vagrant-dev-box` takes around 10 minutes on a 15mb connection
after the [base vagrant box](Vagrantfile.dev#L5) and ubuntu [lxc cloud img](setup-vagrant-dev-box#L15-L16)
have been downloaded*
after the [base vagrant box](Vagrantfile.dev.1.0#L5) and ubuntu [lxc cloud
img](setup-vagrant-dev-box#L15-L16) have been downloaded*
## Protip

View file

@ -1,10 +1,19 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
if Vagrant::VERSION =~ /^1\.1/
raise 'This Vagrantfile is meant to be used with Vagrant 1.0'
end
Vagrant::Config.run do |config|
config.vm.box = "quantal64"
config.vm.box_url = "https://github.com/downloads/roderik/VagrantQuantal64Box/quantal64.box"
if defined? VagrantVbguest::Config
config.vbguest.auto_update = false
config.vbguest.no_remote = true
end
config.vm.network :hostonly, "192.168.33.10"
config.vm.customize [
"modifyvm", :id,