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