summaryrefslogtreecommitdiffstats
path: root/keystone/identity/backends/ldap/core.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-19 15:54:46 +0000
committerGerrit Code Review <review@openstack.org>2013-06-19 15:54:46 +0000
commit7cd0bb068245a8d426ff255353e63d4b8d367245 (patch)
tree5bd0bc68ccaa79aebaed50fce0509990d1d6c6fa /keystone/identity/backends/ldap/core.py
parentcdc0ee1f85aa762f7d34297a034a10519ba9f40f (diff)
parent96dea469c9de72a9ef6ee0c03833c4f3ff2f9f8f (diff)
downloadkeystone-7cd0bb068245a8d426ff255353e63d4b8d367245.tar.gz
keystone-7cd0bb068245a8d426ff255353e63d4b8d367245.tar.xz
keystone-7cd0bb068245a8d426ff255353e63d4b8d367245.zip
Merge "Set default 'ou' name for LDAP projects to Projects"
Diffstat (limited to 'keystone/identity/backends/ldap/core.py')
-rw-r--r--keystone/identity/backends/ldap/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/identity/backends/ldap/core.py b/keystone/identity/backends/ldap/core.py
index 3bc9a9c0..4d79e268 100644
--- a/keystone/identity/backends/ldap/core.py
+++ b/keystone/identity/backends/ldap/core.py
@@ -492,7 +492,7 @@ class UserApi(common_ldap.EnabledEmuMixIn, common_ldap.BaseLdap, ApiShimMixin):
# TODO(termie): turn this into a data object and move logic to driver
class ProjectApi(common_ldap.EnabledEmuMixIn, common_ldap.BaseLdap,
ApiShimMixin):
- DEFAULT_OU = 'ou=Groups'
+ DEFAULT_OU = 'ou=Projects'
DEFAULT_STRUCTURAL_CLASSES = []
DEFAULT_OBJECTCLASS = 'groupOfNames'
DEFAULT_ID_ATTR = 'cn'