summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-support/openldap/files/ops-base.ldif
diff options
context:
space:
mode:
authorAmy Fong <amy.fong@windriver.com>2014-07-22 10:07:48 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-07-30 00:50:20 -0400
commit010135a5b132197a784d3f337748433278f1fad8 (patch)
treed858faa9a437fa9ad7ab305d95ce371bb963ffc5 /meta-openstack/recipes-support/openldap/files/ops-base.ldif
parentf367c5dc967789030d778e81bd4c0340302fd50e (diff)
downloadmeta-cloud-services-010135a5b132197a784d3f337748433278f1fad8.tar.gz
keystone: openldap packaging
Add openstack specific parts of openldap. openldap's init script initializes the data with the basic tree structures needed for keystone - the Group, User and Role tree. Additionally, we add two variables which can be set in local.conf, LDAP_DN - default DN for ldap default: "dc=my-domain,dc=com" LDAP_DATADIR - default directory for ldap's data directory default: "/etc/openldap-data/" Signed-off-by: Amy Fong <amy.fong@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-support/openldap/files/ops-base.ldif')
-rw-r--r--meta-openstack/recipes-support/openldap/files/ops-base.ldif28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-openstack/recipes-support/openldap/files/ops-base.ldif b/meta-openstack/recipes-support/openldap/files/ops-base.ldif
new file mode 100644
index 0000000..cfbb94b
--- /dev/null
+++ b/meta-openstack/recipes-support/openldap/files/ops-base.ldif
@@ -0,0 +1,28 @@
1dn: dc=my-domain,dc=com
2objectclass: dcObject
3objectclass: top
4objectclass: organization
5o: my-domain Company
6dc: my-domain
7
8dn: cn=Manager,dc=my-domain,dc=com
9objectclass: organizationalRole
10cn: Manager
11description: LDAP administratior
12roleOccupant: dc=my-domain,dc=com
13
14dn: ou=Roles,dc=my-domain,dc=com
15objectclass:organizationalunit
16ou: Roles
17description: generic groups branch
18
19dn: ou=Users,dc=my-domain,dc=com
20objectclass:organizationalunit
21ou: Users
22description: generic groups branch
23
24dn: ou=Groups,dc=my-domain,dc=com
25objectclass:organizationalunit
26ou: Groups
27description: generic groups branch
28