From 3d08211972e295291284bcc46462ec7c4e05dc60 Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Wed, 21 Dec 2011 14:16:36 +0100 Subject: Fix LDAP Schema Syntax (bug 904380) Apply the change from commit 8741597f62 to the .schema file as well (additional fix for bug 904380) Change-Id: Ifd7e7de235b9c81c746cdc64ce699073697c8bb0 --- keystone/backends/ldap/keystone.schema | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/keystone/backends/ldap/keystone.schema b/keystone/backends/ldap/keystone.schema index 77471ef3..68f0d562 100644 --- a/keystone/backends/ldap/keystone.schema +++ b/keystone/backends/ldap/keystone.schema @@ -51,8 +51,7 @@ objectClass ( NAME 'keystoneUser' SUP top AUXILIARY - MUST ( keystoneName ) - MUST ( keystoneEnabled ) + MUST ( keystoneName $ keystoneEnabled ) MAY ( mail $ userPassword ) ) @@ -70,8 +69,7 @@ objectClass ( NAME 'keystoneTenant' SUP top AUXILIARY - MUST ( keystoneName ) - MUST ( keystoneEnabled ) + MUST ( keystoneName $ keystoneEnabled ) MAY ( member $ description ) ) -- cgit