Method: Beaker::Hypervisor#configure
- Defined in:
- lib/beaker/hypervisor.rb
#configure ⇒ Object
Default configuration steps to be run for a given hypervisor. Any additional configuration to be done to the provided SUT for test execution to be successful.
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/beaker/hypervisor.rb', line 104 def configure return unless @options[:configure] if @options[:timesync] timesync(@hosts, @options) end if @options[:root_keys] sync_root_keys(@hosts, @options) end if @options[:add_el_extras] add_el_extras(@hosts, @options) end if @options[:disable_iptables] disable_iptables @hosts, @options end if @options[:set_env] set_env(@hosts, @options) end if @options[:disable_updates] disable_updates(@hosts, @options) end end |