tpm/Vagrantfile

11 lines
302 B
Plaintext
Raw Normal View History

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