From 6200b8786fc4db9623aaefe728b768d119767096 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Thu, 31 Jul 2014 11:52:04 +0200 Subject: idviews: Create container for ID views under cn=accounts Part of: https://fedorahosted.org/freeipa/ticket/3979 --- install/updates/71-idviews.update | 4 ++++ install/updates/Makefile.am | 1 + ipalib/constants.py | 1 + 3 files changed, 6 insertions(+) create mode 100644 install/updates/71-idviews.update diff --git a/install/updates/71-idviews.update b/install/updates/71-idviews.update new file mode 100644 index 000000000..5a5a3d60a --- /dev/null +++ b/install/updates/71-idviews.update @@ -0,0 +1,4 @@ +dn: cn=views,cn=accounts,$SUFFIX +default: objectClass: top +default: objectClass: nsContainer +default: cn: views \ No newline at end of file diff --git a/install/updates/Makefile.am b/install/updates/Makefile.am index 026cde049..555805aa9 100644 --- a/install/updates/Makefile.am +++ b/install/updates/Makefile.am @@ -43,6 +43,7 @@ app_DATA = \ 60-trusts.update \ 61-trusts-s4u2proxy.update \ 62-ranges.update \ + 71-idviews.update \ $(NULL) EXTRA_DIST = \ diff --git a/ipalib/constants.py b/ipalib/constants.py index 8af221328..b24ff0dd4 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -113,6 +113,7 @@ DEFAULT_CONFIG = ( ('container_realm_domains', DN(('cn', 'Realm Domains'), ('cn', 'ipa'), ('cn', 'etc'))), ('container_otp', DN(('cn', 'otp'))), ('container_radiusproxy', DN(('cn', 'radiusproxy'))), + ('container_views', DN(('cn', 'views'), ('cn', 'accounts'))), # Ports, hosts, and URIs: ('xmlrpc_uri', 'http://localhost:8888/ipa/xml'), -- cgit