module ChefConfig::Mixin::FuzzyHostnameMatcher

def fuzzy_hostname_match_any?(hostname, matches)

Returns:
  • (Boolean) -

Parameters:
  • matches (String) -- the pattern to match
  • hostname (String) -- the hostname to check
def fuzzy_hostname_match_any?(hostname, matches)
  if hostname && matches
    return matches.to_s.split(/\s*,\s*/).compact.any? do |m|
      fuzzy_hostname_match?(hostname, m)
    end
  end
  false
end