Commit b1d1ae8c authored by sondabar's avatar sondabar

Avoid certificate invalid messages for vagrant with parallels provider

parent 6cd8e5c0
......@@ -186,6 +186,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
v.customize ['set', :id, '--shf-guest-automount', 'off']
v.customize ['set', :id, '--shf-host', 'on']
# Synchronize VM clocks to host clock (Avoid certificate invalid issue)
v.customize ['set', :id, '--time-sync', 'on']
# Remove all auto-mounted "shared folders"; the result seems to
# persist between runs (i.e., vagrant halt && vagrant up)
override.vm.provision :shell, :inline => (%q{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment