# File lib/puppet/network/authconfig.rb, line 45 45: def initialize(file = nil, parsenow = true) 46: @file = file || Puppet[:authconfig] 47: 48: unless @file 49: raise Puppet::DevError, "No authconfig file defined" 50: end 51: return unless self.exists? 52: super(@file) 53: @rights = Puppet::Network::Rights.new 54: @configstamp = @configstatted = nil 55: @configtimeout = 60 56: 57: if parsenow 58: read() 59: end 60: end