class Beaker::VagrantParallels

Public Class Methods

provider_vfile_section(host, options) click to toggle source
# File lib/beaker/hypervisor/vagrant_parallels.rb, line 8
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

Public Instance Methods

provision(provider = 'parallels') click to toggle source
Calls superclass method Beaker::Vagrant#provision
# File lib/beaker/hypervisor/vagrant_parallels.rb, line 4
def provision(provider = 'parallels')
  super
end