vagrant-lxc-ng/Vagrantfile.dev.1.0

26 lines
698 B
Plaintext
Raw Normal View History

2013-02-25 04:58:04 +00:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
2013-03-04 23:40:20 +00:00
if Vagrant::VERSION =~ /^1\.1/
raise 'This Vagrantfile is meant to be used with Vagrant 1.0'
end
2013-02-25 04:58:04 +00:00
Vagrant::Config.run do |config|
config.vm.box = "quantal64"
config.vm.box_url = "https://github.com/downloads/roderik/VagrantQuantal64Box/quantal64.box"
2013-03-04 23:40:20 +00:00
if defined? VagrantVbguest::Config
config.vbguest.auto_update = false
config.vbguest.no_remote = true
end
2013-02-25 04:58:04 +00:00
config.vm.network :hostonly, "192.168.33.10"
config.vm.customize [
"modifyvm", :id,
"--memory", 1024,
"--cpus", "2"
]
config.vm.share_folder("v-root", "/vagrant", ".", :nfs => true)
end