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 19:12:28 +00:00
|
|
|
# tpm is synced to `/root/tmux_plugin_manager` in vagrant
|
2014-07-17 20:16:46 +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
|