class ChefConfig::WorkstationConfigLoader

def have_config?(path)

def have_config?(path)
  if path_exists?(path)
    logger.info("Using config at #{path}")
    true
  else
    logger.debug("Config not found at #{path}, trying next option")
    false
  end
end