module Beaker::DSL::InstallUtils::AIODefaults
def add_aio_defaults_on(hosts)
-
hosts
(Host, Array
) -- One or more hosts to act upon,, String, Symbol
def add_aio_defaults_on(hosts) block_on hosts do | host | if host['platform'] =~ /windows/ platform = 'windows' else platform = 'unix' end add_platform_aio_defaults(host, platform) end end