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.
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 |