class Utils::Config::ConfigFile

def parse_config_file(config_file_name)

def parse_config_file(config_file_name)
  File.open(config_file_name) do |cf|
    parse cf.read
  end
  self
rescue SystemCallError => e
  $DEBUG and warn "Couldn't read config file "\
    "#{config_file_name.inspect}: #{e.class} #{e}"
  return nil
end