Sha256: 8a428ba03eab10ca9b47efda3412cc16578d08d228f660a615d81eaf4851548f
Contents?: true
Size: 654 Bytes
Versions: 14
Compression:
Stored size: 654 Bytes
Contents
require 'beaker/hypervisor/vagrant' class Beaker::VagrantParallels < Beaker::Vagrant def provision(provider = 'parallels') super end def self.provider_vfile_section(host, options) provider_section = "" provider_section << " v.vm.provider :parallels do |prl|\n" provider_section << " prl.optimize_power_consumption = false\n" provider_section << " prl.memory = '#{memsize(host,options)}'\n" provider_section << " prl.update_guest_tools = false\n" if options[:prl_update_guest_tools] == 'disable' provider_section << " end\n" provider_section end end
Version data entries
14 entries across 14 versions & 1 rubygems