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



86
87
88
89
90
91
92
# File 'lib/beaker/network_manager.rb', line 86

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