do not attempt to mount vagrant share

This commit is contained in:
Jeffrey Martin 2018-08-02 12:44:30 -05:00
parent 6164866755
commit 5b4901babf
No known key found for this signature in database
GPG Key ID: 0CD9BBC2AF15F171
2 changed files with 2 additions and 0 deletions

1
Vagrantfile vendored
View File

@ -2,6 +2,7 @@
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.synced_folder '.', '/vagrant', disabled: true
config.vm.define "ub1404" do |ub1404|
ub1404.vm.box = "metasploitable3-ub1404"
ub1404.vm.hostname = "metasploitable3-ub1404"

View File

@ -4,6 +4,7 @@
Vagrant.require_version ">= 1.6.2"
Vagrant.configure("2") do |config|
config.vm.synced_folder '.', '/vagrant', disabled: true
config.vm.define "vagrant-windows-2008-r2"
config.vm.box = "windows_2008_r2"
config.vm.communicator = "winrm"