# File lib/puppet/provider/macauthorization/macauthorization.rb, line 64 64: def populate_rules_rights 65: auth_plist = Plist::parse_xml(AuthDB) 66: raise Puppet::Error.new("Cannot parse: #{AuthDB}") if not auth_plist 67: self.rights = auth_plist["rights"].dup 68: self.rules = auth_plist["rules"].dup 69: self.parsed_auth_db = self.rights.dup 70: self.parsed_auth_db.merge!(self.rules.dup) 71: end