vagrant-cachier-ng/spec/acceptance/fixtures/auto-detect-with-provisioning.rb
Fabio Rehm 8efb8daf07 Implement some initial sanity checks using Bats
Somehow related to GH-1
2013-08-13 23:51:13 -03:00

10 lines
294 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 = 'raring64'
config.vm.provision :shell, inline: 'apt-get update && apt-get install -y git'
end