Method: Beaker::NetworkManager#validate
- Defined in:
- lib/beaker/network_manager.rb
#validate ⇒ Object
Validate all provisioned machines, ensure that required packages are installed - if they are missing attempt to add them.
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 |