tpm/Vagrantfile

11 lines
302 B
Ruby
Raw Normal View History

2014-05-24 15:38:41 +02:00
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2014-07-17 22:16:46 +02:00
config.vm.box = 'precise32'
config.vm.box_url = 'http://files.vagrantup.com/precise32.box'
2014-05-24 15:38:41 +02:00
2014-07-17 22:51:07 +02:00
config.vm.synced_folder './', '/home/vagrant/tpm'
2014-05-24 15:38:41 +02:00
2014-07-17 22:16:46 +02:00
config.vm.provision 'shell', path: 'vagrant_provisioning.sh'
2014-05-24 15:38:41 +02:00
end