Merge pull request #2321 from bassam/pr-disable-parallels-guest-tools

oem-vagrant: disable guest tools for parallels
This commit is contained in:
Alex Crawford 2016-12-15 08:28:38 -08:00 committed by GitHub
commit 6d691bfc3e

View File

@ -32,4 +32,10 @@ Vagrant.configure("2") do |config|
config.vm.provider :vmware_fusion do |vf| config.vm.provider :vmware_fusion do |vf|
vf.functional_hgfs = false vf.functional_hgfs = false
end end
end
config.vm.provider :parallels do |prl|
# Guest Tools are unavailable.
prl.check_guest_tools = false
prl.functional_psf = false
end
end