tpm/Vagrantfile

11 lines
302 B
Plaintext
Raw Normal View History

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