]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/commitdiff
Order ldap configuration by priority
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Tue, 5 Jun 2018 18:54:18 +0000 (20:54 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Tue, 5 Jun 2018 19:11:09 +0000 (21:11 +0200)
modules/base_installation/lib/puppet/functions/ldap_data.rb

index 0c92d8988dbf5cf047e21d25e395dc92c6d2efbb..0a6d9356af1b695b57dfefa5e0c2d4445d43a1eb 100644 (file)
@@ -30,9 +30,19 @@ Puppet::Functions.create_function(:ldap_data) do
       filter = "(objectclass=*)"
 
       data = {}
-      connection.search(base, scope, filter) do |entry|
-        data_ = entry.to_hash
-        jsons = data_["immaePuppetJson"] || []
+      data_array = connection.search2(base, scope, filter, attrs=["immaePuppetJson", "dn"]).map do |entry|
+        [entry["dn"].first, entry["immaePuppetJson"] || []]
+      end.sort_by do |dn, json|
+        if dn == "ou=roles,ou=hosts,dc=immae,dc=eu"
+          [0, dn]
+        elsif dn.end_with?("ou=roles,ou=hosts,dc=immae,dc=eu")
+          [1, dn]
+        else
+          [2, dn]
+        end
+      end.to_h
+
+      data_array.each do |dn, jsons|
         jsons.each do |json|
           data.merge!(JSON.parse(json))
         end