vagrant-cachier-ng/spec/acceptance/fixtures/auto-detect-with-provisioning.rb
Ealden Esto E. Escañan e960cdb265 Use precise64 for all fixtures
Should be easier to run the acceptance tests as we now only need to get
1 box instead of 2 before.
2013-12-05 22:42:50 +08:00

10 lines
295 B
Ruby

Vagrant.require_plugin 'vagrant-cachier'
Vagrant.require_plugin 'vagrant-lxc'
Vagrant.configure("2") do |config|
config.cache.auto_detect = true
config.cache.scope = :machine
config.vm.box = 'precise64'
config.vm.provision :shell, inline: 'apt-get update && apt-get install -y git'
end