Method: Beaker::NetworkManager#validate

Defined in:
lib/beaker/network_manager.rb

#validateObject

Validate all provisioned machines, ensure that required packages are installed - if they are missing attempt to add them.

Raises:

  • (Exception)

    Raise an exception if virtual machines fail to be validated



82
83
84
85
86
87
88
# File 'lib/beaker/network_manager.rb', line 82

def validate
  return unless @hypervisors

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