You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
436 B
17 lines
436 B
2 years ago
|
# -*- mode: ruby -*-
|
||
|
# vi: set ft=ruby :
|
||
|
|
||
|
Vagrant.configure(2) do |config|
|
||
|
config.ssh.shell = "sh"
|
||
|
|
||
|
# Disable the base shared folder, Guest Tools supporting this feature are
|
||
|
# unavailable for all providers.
|
||
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
||
|
|
||
|
config.vm.provider :parallels do |prl, override|
|
||
|
# Guest Tools are unavailable.
|
||
|
prl.check_guest_tools = false
|
||
|
prl.functional_psf = false
|
||
|
end
|
||
|
end
|