Set up a Vagrantfile for 1.0
This commit is contained in:
parent
aa57fd794b
commit
ce8445b001
1 changed files with 33 additions and 0 deletions
33
development/Vagrantfile.dev.vb
Normal file
33
development/Vagrantfile.dev.vb
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# -*- mode: ruby -*-
|
||||||
|
# vi: set ft=ruby :
|
||||||
|
|
||||||
|
def local_cache(box_name)
|
||||||
|
cache_dir = File.join(File.expand_path(Vagrant::Environment::DEFAULT_HOME),
|
||||||
|
'cache',
|
||||||
|
'apt',
|
||||||
|
box_name)
|
||||||
|
partial_dir = File.join(cache_dir, 'partial')
|
||||||
|
FileUtils.mkdir_p(partial_dir) unless File.exists? partial_dir
|
||||||
|
cache_dir
|
||||||
|
end
|
||||||
|
|
||||||
|
Vagrant::Config.run do |config|
|
||||||
|
config.vm.box = "quantal64"
|
||||||
|
config.vm.box_url = "https://github.com/downloads/roderik/VagrantQuantal64Box/quantal64.box"
|
||||||
|
|
||||||
|
cache_dir = local_cache(config.vm.box)
|
||||||
|
config.vm.share_folder "v-root", "/vagrant", "../"
|
||||||
|
config.vm.share_folder "v-cache", "/var/apt/archives/", cache_dir
|
||||||
|
|
||||||
|
if defined? VagrantVbguest::Config
|
||||||
|
config.vbguest.auto_update = false
|
||||||
|
config.vbguest.no_remote = true
|
||||||
|
end
|
||||||
|
|
||||||
|
config.vm.provision :puppet do |puppet|
|
||||||
|
puppet.manifests_path = "."
|
||||||
|
puppet.manifest_file = "site.pp"
|
||||||
|
# Pass DEBUG=1 to vagrant commands if you want to make some debugging noise
|
||||||
|
puppet.options << [ "--verbose", "--debug" ] if ENV["DEBUG"] == '1'
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue