remove explicit mount type configuration

This commit is contained in:
byte 2019-02-16 20:35:07 -05:00
parent 5173bd45cf
commit 85f87cc280

2
Vagrantfile vendored
View File

@ -18,7 +18,7 @@ Vagrant.configure('2') do |config|
node.vm.network :private_network, ip: '192.168.64.78'
end
config.vm.synced_folder '.', '/vagrant', type: 'nfs'
config.vm.synced_folder '.', '/vagrant'
config.vm.provision 'shell', path: 'vagrant/install.sh'
end