2013-08-14 01:39:32 +00:00
|
|
|
Vagrant.require_plugin 'vagrant-cachier'
|
|
|
|
Vagrant.require_plugin 'vagrant-lxc'
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
config.cache.auto_detect = true
|
2013-12-05 14:42:50 +00:00
|
|
|
config.vm.box = 'precise64'
|
2013-12-05 14:50:17 +00:00
|
|
|
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
|
2013-08-14 01:39:32 +00:00
|
|
|
config.vm.provision :shell, inline: 'echo Hello!'
|
|
|
|
end
|