Method: Beaker::NetworkManager#configure

Defined in:
lib/beaker/network_manager.rb

#configureObject

Configure all provisioned machines, adding any packages or settings required for SUTs

Raises:

  • (Exception)

    Raise an exception if virtual machines fail to be configured



91
92
93
94
95
96
97
# File 'lib/beaker/network_manager.rb', line 91

def configure
  return unless @hypervisors

  @hypervisors.each_key do |type|
    @hypervisors[type].configure
  end
end