Sha256: 02fc2f1ec1f93539340de64b9c78a6ea0fbaf1a6f86579003e6eb42b82a325b1
Contents?: true
Size: 600 Bytes
Versions: 21
Compression:
Stored size: 600 Bytes
Contents
require 'beaker/hypervisor/vagrant' class Beaker::VagrantFusion < Beaker::Vagrant def provision(provider = 'vmware_fusion') # By default vmware_fusion creates a .vagrant directory relative to the # Vagrantfile path. That means beaker tries to scp the VM to itself unless # we move the VM files elsewhere. ENV['VAGRANT_VMWARE_CLONE_DIRECTORY'] = '~/.vagrant/vmware_fusion' super end def self.provider_vfile_section(host, options) " v.vm.provider :vmware_fusion do |v|\n" + " v.vmx['memsize'] = '#{memsize(host, options)}'\n" + " end\n" end end
Version data entries
21 entries across 21 versions & 1 rubygems