From 3253a305416c963fcdc2670caa2c22c167ccc0d2 Mon Sep 17 00:00:00 2001 From: Ana Krivokapic Date: Tue, 12 Feb 2013 10:50:00 -0500 Subject: Add list of domains associated to our realm to cn=etc Add new LDAP container to store the list of domains associated with IPA realm. Add two new ipa commands (ipa realmdomains-show and ipa realmdomains-mod) to allow manipulation of the list of realm domains. Unit test file covering these new commands was added. https://fedorahosted.org/freeipa/ticket/2945 --- install/updates/40-realm_domains.update | 8 ++++++++ install/updates/Makefile.am | 1 + 2 files changed, 9 insertions(+) create mode 100644 install/updates/40-realm_domains.update (limited to 'install') diff --git a/install/updates/40-realm_domains.update b/install/updates/40-realm_domains.update new file mode 100644 index 000000000..9d766c676 --- /dev/null +++ b/install/updates/40-realm_domains.update @@ -0,0 +1,8 @@ +# Add the Realm Domains container + +dn: cn=Realm Domains,cn=ipa,cn=etc,$SUFFIX +default:objectClass: domainRelatedObject +default:objectClass: nsContainer +default:objectClass: top +default:cn: Realm Domains +default:associatedDomain: $DOMAIN diff --git a/install/updates/Makefile.am b/install/updates/Makefile.am index 2e4f0a264..ab3f4112a 100644 --- a/install/updates/Makefile.am +++ b/install/updates/Makefile.am @@ -28,6 +28,7 @@ app_DATA = \ 25-referint.update \ 30-s4u2proxy.update \ 40-delegation.update \ + 40-realm_domains.update \ 40-replication.update \ 40-dns.update \ 40-automember.update \ -- cgit