You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the module uses \S+ to verify the dn of a group to set a limit. \S matches any non-whitespace character, but it is perfectly allowed to use whitespaces in LDAP DNs, like cn=directory administrators, .... In order to allow such groups, the regexp has to be fixed.
The text was updated successfully, but these errors were encountered:
As can be seen in
https://github.com/camptocamp/puppet-openldap/blob/82f3bd04b006e3c5816d5533d95cb8fd61eb7e46/lib/puppet/type/openldap_database.rb#L210
the module uses
\S+
to verify the dn of a group to set a limit.\S
matches any non-whitespace character, but it is perfectly allowed to use whitespaces in LDAP DNs, likecn=directory administrators, ...
. In order to allow such groups, the regexp has to be fixed.The text was updated successfully, but these errors were encountered: