Method: Beaker::Subcommands::SubcommandUtil.init_hypervisor

Defined in:
lib/beaker/subcommands/subcommand_util.rb

.init_hypervisor(options) ⇒ Object

Call the quick start task for the specified hypervisor

Parameters:

  • options (Array<Object>)

    the options we want to query



104
105
106
107
108
109
110
111
# File 'lib/beaker/subcommands/subcommand_util.rb', line 104

def self.init_hypervisor(options)
  case options[:hypervisor]
  when "vagrant"
    init_vagrant
  when "vmpooler"
    init_vmpooler
  end
end