# File lib/rhc/config.rb, line 131 def self.set_opts_config(confpath) begin @@opts_config_path = File.expand_path(confpath) @@config_path = @@opts_config_path @@opts_config = RHC::Vendor::ParseConfig.new(@@opts_config_path) if File.exists?(@@opts_config_path) rescue Errno::EACCES => e raise Errno::EACCES.new "Could not open config file: #{e.message}" end end