module Beaker::DSL::InstallUtils::AIODefaults

def add_aio_defaults_on(hosts)

Parameters:
  • hosts (Host, Array, String, Symbol) -- One or more hosts to act upon,
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