Getting ready for bootstrap
This commit is contained in:
parent
a06b45e6b9
commit
ceb6f763df
2 changed files with 12 additions and 3 deletions
|
@ -97,14 +97,14 @@ get up and running with the [`setup-vagrant-dev-box`](setup-vagrant-dev-box)
|
||||||
script. Feel free to use it :)
|
script. Feel free to use it :)
|
||||||
|
|
||||||
```
|
```
|
||||||
cp Vagrantfile.dev Vagrantfile
|
cp Vagrantfile.dev.1.0 Vagrantfile
|
||||||
./setup-vagrant-dev-box
|
./setup-vagrant-dev-box
|
||||||
vagrant ssh
|
vagrant ssh
|
||||||
```
|
```
|
||||||
|
|
||||||
*NOTE: `setup-vagrant-dev-box` takes around 10 minutes on a 15mb connection
|
*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)
|
after the [base vagrant box](Vagrantfile.dev.1.0#L5) and ubuntu [lxc cloud
|
||||||
have been downloaded*
|
img](setup-vagrant-dev-box#L15-L16) have been downloaded*
|
||||||
|
|
||||||
|
|
||||||
## Protip
|
## Protip
|
||||||
|
|
|
@ -1,10 +1,19 @@
|
||||||
# -*- mode: ruby -*-
|
# -*- mode: ruby -*-
|
||||||
# vi: set ft=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|
|
Vagrant::Config.run do |config|
|
||||||
config.vm.box = "quantal64"
|
config.vm.box = "quantal64"
|
||||||
config.vm.box_url = "https://github.com/downloads/roderik/VagrantQuantal64Box/quantal64.box"
|
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.network :hostonly, "192.168.33.10"
|
||||||
config.vm.customize [
|
config.vm.customize [
|
||||||
"modifyvm", :id,
|
"modifyvm", :id,
|
Loading…
Add table
Reference in a new issue