1

i using vagrant 1.8.5 with vmware fusion 7.1.3

in the documentation is a config variable for virtualbox to switch between full and linked clone.

config.vm.provider "virtualbox" do |v|
   v.linked_clone = true
end

is there a vagrant config option for vmware fusion to use full clone?

user24525
  • 423
  • 3
  • 8

1 Answers1

0

to answer my own question: vagrant 1.9.3 allows you to disable linked clones with the vmware provider too. see the documentation

config.vm.provider "vmware_fusion" do |v|
  v.linked_clone = false
end
user24525
  • 423
  • 3
  • 8