# File lib/openshift-origin-common/config.rb, line 26
    def initialize(conf_path=NODE_CONF_FILE)
      begin
        @conf = ParseConfig.new(conf_path)
      rescue Errno::EACCES => e
        puts "Could not open config file #{conf_path}: #{e.message}"
        exit 253
      end
    end