# File lib/puppet/util/ldap/manager.rb, line 170
170:     def maps(attributes)
171:         # The map with the puppet attributes as the keys
172:         @puppet2ldap = attributes
173: 
174:         # and the ldap attributes as the keys.
175:         @ldap2puppet = attributes.inject({}) { |map, ary| map[ary[1]] = ary[0]; map }
176: 
177:         return self
178:     end