diff options
| author | Amy Fong <amy.fong@windriver.com> | 2014-07-22 10:07:48 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-07-30 00:50:20 -0400 |
| commit | 010135a5b132197a784d3f337748433278f1fad8 (patch) | |
| tree | d858faa9a437fa9ad7ab305d95ce371bb963ffc5 /meta-openstack/recipes-support/openldap/files/ops-base.ldif | |
| parent | f367c5dc967789030d778e81bd4c0340302fd50e (diff) | |
| download | meta-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.ldif | 28 |
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 @@ | |||
| 1 | dn: dc=my-domain,dc=com | ||
| 2 | objectclass: dcObject | ||
| 3 | objectclass: top | ||
| 4 | objectclass: organization | ||
| 5 | o: my-domain Company | ||
| 6 | dc: my-domain | ||
| 7 | |||
| 8 | dn: cn=Manager,dc=my-domain,dc=com | ||
| 9 | objectclass: organizationalRole | ||
| 10 | cn: Manager | ||
| 11 | description: LDAP administratior | ||
| 12 | roleOccupant: dc=my-domain,dc=com | ||
| 13 | |||
| 14 | dn: ou=Roles,dc=my-domain,dc=com | ||
| 15 | objectclass:organizationalunit | ||
| 16 | ou: Roles | ||
| 17 | description: generic groups branch | ||
| 18 | |||
| 19 | dn: ou=Users,dc=my-domain,dc=com | ||
| 20 | objectclass:organizationalunit | ||
| 21 | ou: Users | ||
| 22 | description: generic groups branch | ||
| 23 | |||
| 24 | dn: ou=Groups,dc=my-domain,dc=com | ||
| 25 | objectclass:organizationalunit | ||
| 26 | ou: Groups | ||
| 27 | description: generic groups branch | ||
| 28 | |||
