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



96
97
98
99
100
101
102
# File 'lib/beaker/network_manager.rb', line 96

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