vagrant-cachier-ng/spec/acceptance/fixtures/auto-detect-with-provisioning.rb

9 lines
282 B
Ruby

Vagrant.configure("2") do |config|
config.cache.auto_detect = true
config.cache.scope = :machine
config.vm.box = 'precise64'
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
config.vm.provision :shell, inline: 'apt-get update && apt-get install -y git'
end