[SCM] Samba Shared Repository - branch master updated - tevent-0-9-8-405-g813f9da

Matthias Dieter Wallnöfer mdw at samba.org
Thu Sep 17 11:13:59 MDT 2009


The branch, master has been updated
       via  813f9dacbd5a740fdc77f54afd2e13177f9e444f (commit)
       via  4445cdfad229607d380442118bcf9c5949cb15b8 (commit)
       via  4fa327a19f3da86df0fa7e63a66b5ee352de2c5d (commit)
      from  d237022f91997e11c73ba49438499e5431b00443 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 813f9dacbd5a740fdc77f54afd2e13177f9e444f
Author: Matthias Dieter Wallnöfer <mwallnoefer at yahoo.de>
Date:   Thu Sep 17 18:17:55 2009 +0200

    s4:descriptor - cosmetic

commit 4445cdfad229607d380442118bcf9c5949cb15b8
Author: Matthias Dieter Wallnöfer <mwallnoefer at yahoo.de>
Date:   Thu Sep 17 18:05:58 2009 +0200

    s4:libnet_become_dc - Fix some uninitialised variables

commit 4fa327a19f3da86df0fa7e63a66b5ee352de2c5d
Author: Matthias Dieter Wallnöfer <mwallnoefer at yahoo.de>
Date:   Thu Sep 17 16:00:55 2009 +0200

    s4:provision - Some rework
    
    - Add/change "wellKnownObjects" attributes
    - Order entries in "provision_basedn_modify.ldif"
    - Add/change "delete entries" object under BASEDN and CONFIGDN
    - Fix default version number of "Default domain policy" group policy
    - Add "domain updates" objects for interoperability with MS AD maintaining tools
    - Show version number in the "oEMInformation" attribute (suggested by ekacnet)
    - Smaller fixups

-----------------------------------------------------------------------

Summary of changes:
 source4/dsdb/samdb/ldb_modules/descriptor.c        |    2 +-
 source4/libnet/libnet_become_dc.c                  |    6 +-
 source4/scripting/python/samba/provision.py        |    7 +-
 ...ers-win2k0.txt => DisplaySpecifiers-Win2k0.txt} |47146 ++++++++++----------
 .../DisplaySpecifiers-Win2k3.txt                   |    1 +
 .../DisplaySpecifiers-Win2k3R2.txt                 |    1 +
 .../DisplaySpecifiers-Win2k8.txt                   |    1 +
 .../DisplaySpecifiers-Win2k8R2.txt                 |    1 +
 source4/setup/provision.ldif                       |  225 +
 source4/setup/provision_basedn_modify.ldif         |   82 +-
 source4/setup/provision_configuration.ldif         |   14 +-
 .../provision_configuration_basedn_modify.ldif     |    7 +
 source4/setup/provision_group_policy.ldif          |    2 +-
 source4/setup/provision_schema_basedn_modify.ldif  |    1 +
 14 files changed, 23882 insertions(+), 23614 deletions(-)
 rename source4/setup/display-specifiers/{DisplaySpecifiers-win2k0.txt => DisplaySpecifiers-Win2k0.txt} (98%)


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/samdb/ldb_modules/descriptor.c b/source4/dsdb/samdb/ldb_modules/descriptor.c
index 2a72d32..e6fb856 100644
--- a/source4/dsdb/samdb/ldb_modules/descriptor.c
+++ b/source4/dsdb/samdb/ldb_modules/descriptor.c
@@ -1,4 +1,4 @@
-   /*
+/*
    ldb database library
 
    Copyright (C) Simo Sorce  2006-2008
diff --git a/source4/libnet/libnet_become_dc.c b/source4/libnet/libnet_become_dc.c
index 94b639c..c4e786c 100644
--- a/source4/libnet/libnet_become_dc.c
+++ b/source4/libnet/libnet_become_dc.c
@@ -2455,9 +2455,9 @@ static WERROR becomeDC_drsuapi_pull_partition_recv(struct libnet_BecomeDC_state
 	uint32_t ctr_level = 0;
 	struct drsuapi_DsGetNCChangesCtr1 *ctr1 = NULL;
 	struct drsuapi_DsGetNCChangesCtr6 *ctr6 = NULL;
-	struct GUID *source_dsa_guid;
-	struct GUID *source_dsa_invocation_id;
-	struct drsuapi_DsReplicaHighWaterMark *new_highwatermark;
+	struct GUID *source_dsa_guid = NULL;
+	struct GUID *source_dsa_invocation_id = NULL;
+	struct drsuapi_DsReplicaHighWaterMark *new_highwatermark = NULL;
 	bool more_data = false;
 	NTSTATUS nt_status;
 
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py
index cbb747b..4840efc 100644
--- a/source4/scripting/python/samba/provision.py
+++ b/source4/scripting/python/samba/provision.py
@@ -912,7 +912,7 @@ def setup_samdb(path, setup_path, session_info, credentials, lp,
             domainguid_mod = ""
 
         setup_modify_ldif(samdb, setup_path("provision_basedn_modify.ldif"), {
-            "LDAPTIME": timestring(int(time.time())),
+            "CREATTIME": str(int(time.time()) * 1e7), # seconds -> ticks
             "DOMAINSID": str(domainsid),
             "SCHEMADN": names.schemadn, 
             "NETBIOSNAME": names.netbiosname,
@@ -922,7 +922,8 @@ def setup_samdb(path, setup_path, session_info, credentials, lp,
             "POLICYGUID": policyguid,
             "DOMAINDN": names.domaindn,
             "DOMAINGUID_MOD": domainguid_mod,
-            "DOMAIN_FUNCTIONALITY": str(domainFunctionality)
+            "DOMAIN_FUNCTIONALITY": str(domainFunctionality),
+            "SAMBA_VERSION_STRING": version
             })
 
         message("Adding configuration container")
@@ -1205,7 +1206,7 @@ def provision(setup_dir, message, session_info,
                                    "{" + policyguid + "}")
         os.makedirs(policy_path, 0755)
         open(os.path.join(policy_path, "GPT.INI"), 'w').write(
-                                   "[General]\r\nVersion=65544")
+                                   "[General]\r\nVersion=65543")
         os.makedirs(os.path.join(policy_path, "MACHINE"), 0755)
         os.makedirs(os.path.join(policy_path, "USER"), 0755)
 
diff --git a/source4/setup/display-specifiers/DisplaySpecifiers-win2k0.txt b/source4/setup/display-specifiers/DisplaySpecifiers-Win2k0.txt
similarity index 98%
rename from source4/setup/display-specifiers/DisplaySpecifiers-win2k0.txt
rename to source4/setup/display-specifiers/DisplaySpecifiers-Win2k0.txt
index 65be3f6..567ebed 100644
--- a/source4/setup/display-specifiers/DisplaySpecifiers-win2k0.txt
+++ b/source4/setup/display-specifiers/DisplaySpecifiers-Win2k0.txt
@@ -1,23573 +1,23573 @@
-#
-#Intellectual Property Rights Notice for Open Specifications Documentation
-#
-#- Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages, standards as well as overviews of the interaction among each of these technologies. 
-#
-#- Copyrights. This documentation is covered by Microsoft copyrights. Regardless of any other terms that are contained in the terms of use for the Microsoft website that hosts this documentation, you may make copies of it in order to develop implementations of the technologies described in the Open Specifications and may distribute portions of it in your implementations using these technologies or your documentation as necessary to properly document the implementation. You may also distribute in your implementation, with or without modification, any schema, IDL’s, or code samples that are included in the documentation. This permission also applies to any documents that are referenced in the Open Specifications. 
-#
-#- No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. 
-#
-#- Patents. Microsoft has patents that may cover your implementations of the technologies described in the Open Specifications. Neither this notice nor Microsoft's delivery of the documentation grants any licenses under those or any other Microsoft patents. However, a given Open Specification may be covered by Microsoft's Open Specification Promise (available here: http://www.microsoft.com/interop/osp) or the Community Promise (available here:  http://www.microsoft.com/interop/cp/default.mspx). If you would prefer a written license, or if the technologies described n the Open Specifications are not covered by the Open Specifications Promise or Community Promise, as applicable, patent licenses are available by contacting iplg at microsoft.com. 
-#
-#- Trademarks. The names of companies and products contained in this documentation may be covered by trademarks or similar intellectual property rights. This notice does not grant any licenses under those rights. 
-#
-#- Reservation of Rights. All other rights are reserved, and this notice does not grant any rights other than specifically described above, whether by implication, estoppel, or otherwise. 
-#
-#- Tools. The Open Specifications do not require the use of Microsoft programming tools or programming environments in order for you to develop an implementation. If you have access to Microsoft programming tools and environments you are free to take advantage of them. Certain Open Specifications are intended for use in conjunction with publicly available standard specifications and network programming art, and assumes that the reader either is familiar with the aforementioned material or has immediate access to it.
-#
-#- Preliminary Documentation. This Open Specification is preliminary documentation for this technology.  Since the documentation may change between this preliminary version and the final version, there are risks in relying on preliminary documentation. To the extent that you incur additional development obligations or any other costs as a result of relying on this preliminary documentation, you do so at your own risk.
-
-dn: CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-cn: DisplaySpecifiers
-instanceType: 4
-distinguishedName: CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Container,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: container
-name: DisplaySpecifiers
-showInAdvancedViewOnly: TRUE
-systemFlags: -2147483648
-
-dn: CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-instanceType: 4
-distinguishedName: CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Container,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: container
-showInAdvancedViewOnly: TRUE
-
-dn: CN=DS-UI-Default-Settings,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-cn: DS-UI-Default-Settings
-dSUIAdminNotification: 1,{E62F8206-B71C-11D1-808D-00A024C48131}
-instanceType: 4
-distinguishedName: CN=DS-UI-Default-Settings,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=DS-UI-Settings,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: dSUISettings
-name: DS-UI-Default-Settings
-showInAdvancedViewOnly: TRUE
-
-dn: CN=IntellimirrorGroup-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminPropertyPages: 1,{C641CF88-892F-11d1-BBEB-0060081692B3}
-classDisplayName: Skupina IntelliMirror
-cn: IntellimirrorGroup-Display
-instanceType: 4
-distinguishedName: CN=IntellimirrorGroup-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: IntellimirrorGroup-Display
-shellPropertyPages: 1,{C641CF88-892F-11d1-BBEB-0060081692B3}
-showInAdvancedViewOnly: TRUE
-
-dn: CN=IntellimirrorSCP-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminPropertyPages: 3,{4e40f770-369c-11d0-8922-00a024ab2dbb}
-adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 1,{AC409538-741C-11d1-BBE6-0060081692B3}
-classDisplayName:: U2x1xb5iYSBJbnRlbGxpTWlycm9y
-cn: IntellimirrorSCP-Display
-instanceType: 4
-distinguishedName: CN=IntellimirrorSCP-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: IntellimirrorSCP-Display
-shellPropertyPages: 1,{AC409538-741C-11d1-BBE6-0060081692B3}
-showInAdvancedViewOnly: TRUE
-
-dn: CN=user-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 8,{0910dd01-df8c-11d1-ae27-00c04fa35813}
-adminPropertyPages: 7,{8c5b1b50-d46e-11d1-8091-00a024c48131}
-adminPropertyPages: 6,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 5,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 4,{FD57D295-4FD9-11D1-854E-00C04FC31FD3}
-adminPropertyPages: 3,{B52C1E50-1DD2-11D1-BC43-00C04FC31FD3}
-adminPropertyPages: 1,{6dfe6485-a212-11d0-bcd5-00c04fd8d5b6}
-attributeDisplayNames:: d1dXSG9tZVBhZ2UsQWRyZXNhIHN0csOhbmt5IHYgc8OtdGkgV1dX
-attributeDisplayNames:: dXNlclByaW5jaXBhbE5hbWUsUMWZaWhsYcWhb3ZhY8OtIGptw6lubw==
-attributeDisplayNames:: dXNlcldvcmtzdGF0aW9ucyxQxZlpaGxhxaFvdmFjw60gcHJhY292bsOtIHN0YW5pY2U=
-attributeDisplayNames:: ZGlzcGxheU5hbWUsWm9icmF6b3ZhbsOpIGptw6lubw==
-attributeDisplayNames:: dXJsLEFkcmVzYSBzdHLDoW5reSB2IHPDrXRpIFdXVyAoZGFsxaHDrSBhZHJlc3kp
-attributeDisplayNames:: dGl0bGUsTsOhemV2IGZ1bmtjZQ==
-attributeDisplayNames:: dGVsZXhOdW1iZXIsxIzDrXNsbyBkw6Fsbm9waXN1IChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: dGVsZXBob25lTnVtYmVyLFRlbGVmb25uw60gxI3DrXNsbw==
-attributeDisplayNames:: c3RyZWV0QWRkcmVzcyxVbGljZQ==
-attributeDisplayNames:: c3QsT2tyZXM=
-attributeDisplayNames:: c24sUMWZw61qbWVuw60=
-attributeDisplayNames:: c2FtQWNjb3VudE5hbWUsUMWZaWhsYcWhb3ZhY8OtIGptw6lubyAocMWZZWQgV2luZG93cyAyMDAwKQ==
-attributeDisplayNames:: cHJpbWFyeVRlbGV4TnVtYmVyLMSMw61zbG8gZMOhbG5vcGlzdQ==
-attributeDisplayNames:: cHJpbWFyeUludGVybmF0aW9uYWxJU0ROTnVtYmVyLE1lemluw6Fyb2Ruw60gxI3DrXNsbyBJU0RO
-attributeDisplayNames:: cG9zdE9mZmljZUJveCxQTyBCb3g=
-attributeDisplayNames:: cG9zdGFsQ29kZSxQb8WhdG92bsOtIHNtxJtyb3ZhY8OtIMSNw61zbG8=
-attributeDisplayNames:: cGh5c2ljYWxEZWxpdmVyeU9mZmljZU5hbWUsVW3DrXN0xJtuw60ga2FuY2Vsw6HFmWU=
-attributeDisplayNames:: cGVyc29uYWxUaXRsZSxGdW5rY2U=
-attributeDisplayNames:: cGFnZXIsxIzDrXNsbyBvcGVyw6F0b3J1
-attributeDisplayNames:: b3RoZXJUZWxlcGhvbmUsVGVsZWZvbm7DrSDEjcOtc2xvIChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: b3RoZXJQYWdlcizEjMOtc2xvIG9wZXLDoXRvcnUgKGRhbMWhw60gxI3DrXNsYSk=
-attributeDisplayNames:: b3RoZXJNb2JpbGUsxIzDrXNsbyBtb2JpbG7DrWhvIHRlbGVmb251IChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: b3RoZXJNYWlsYm94LEVsZWt0cm9uaWNrw6EgYWRyZXNhIChkYWzFocOtIGFkcmVzeSk=
-attributeDisplayNames:: b3RoZXJJcFBob25lLFRlbGVmb25uw60gxI3DrXNsbyBJUCAoZGFsxaHDrSDEjcOtc2xhKQ==
-attributeDisplayNames:: b3RoZXJIb21lUGhvbmUsVGVsZWZvbm7DrSDEjcOtc2xvIGRvbcWvIChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: b3RoZXJGYWNzaW1pbGVUZWxlcGhvbmVOdW1iZXIsxIzDrXNsbyBmYXh1IChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: aW5mbyxQb3puw6Fta3k=
-attributeDisplayNames:: bW9iaWxlLMSMw61zbG8gbW9iaWxuw61obyB0ZWxlZm9udQ==
-attributeDisplayNames:: bWlkZGxlTmFtZSwyLiBrxZllc3Ruw60gam3DqW5v
-attributeDisplayNames:: bWVtYmVyT2YsxIxsZW5zdHbDrSB2ZSBza3VwaW7DoWNo
-attributeDisplayNames:: bWFuYWdlcixOYWTFmcOtemVuw70=
-attributeDisplayNames:: bWFpbCxFbGVrdHJvbmlja8OhIGFkcmVzYQ==
-attributeDisplayNames:: bCxNxJtzdG8=
-attributeDisplayNames:: aXBQaG9uZSxUZWxlZm9ubsOtIMSNw61zbG8gSVA=
-attributeDisplayNames:: aW50ZXJuYXRpb25hbElTRE5OdW1iZXIsTWV6aW7DoXJvZG7DrSDEjcOtc2xvIElTRE4gKGRhbMWhw60gxI3DrXNsYSk=
-attributeDisplayNames:: aW5pdGlhbHMsSW5pY2nDoWx5
-attributeDisplayNames:: aG9tZVBvc3RhbEFkZHJlc3MsQWRyZXNhIGRvbcWv
-attributeDisplayNames:: aG9tZVBob25lLFRlbGVmb25uw60gxI3DrXNsbyBkb23Frw==
-attributeDisplayNames:: aG9tZURyaXZlLERvbW92c2vDoSBqZWRub3RrYQ==
-attributeDisplayNames:: aG9tZURpcmVjdG9yeSxEb21vdnNrw6Egc2xvxb5rYQ==
-attributeDisplayNames:: Z2l2ZW5OYW1lLEvFmWVzdG7DrSBqbcOpbm8=
-attributeDisplayNames:: Z2VuZXJhdGlvblF1YWxpZmllcixHZW5lcmHEjW7DrSBwxZnDrXBvbmE=
-attributeDisplayNames:: ZmFjc2ltaWxlVGVsZXBob25lTnVtYmVyLEZheG92w6kgxI3DrXNsbw==
-attributeDisplayNames:: ZW1wbG95ZWVJRCxJRCB6YW3Em3N0bmFuY2U=
-attributeDisplayNames:: ZGl2aXNpb24sRGl2aXpl
-attributeDisplayNames:: ZGlzdGluZ3Vpc2hlZE5hbWUsSm3DqW5vIHBvZGxlIHByb3Rva29sIFg1MDA=
-attributeDisplayNames:: ZGlyZWN0UmVwb3J0cyxQxZnDrW3DrSBwb2TFmcOtemVuw60=
-attributeDisplayNames:: ZGVzY3JpcHRpb24sUG9waXM=
-attributeDisplayNames:: ZGVwYXJ0bWVudCxPZGTEm2xlbsOt
-attributeDisplayNames:: Y29tcGFueSxTcG9sZcSNbm9zdA==
-attributeDisplayNames:: Y29tbWVudCxLb21lbnTDocWZ
-attributeDisplayNames:: Y28sU3TDoXQ=
-attributeDisplayNames:: Yyxaa3JhdGthIHN0w6F0dQ==
-attributeDisplayNames:: Y24sSm3DqW5v
-attributeDisplayNames:: YXNzaXN0YW50LEFzaXN0ZW50
-classDisplayName:: VcW+aXZhdGVs
-cn: user-Display
-contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
-instanceType: 4
-distinguishedName: CN=user-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: user-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{f5d121ed-c8ac-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-treatAsLeaf: TRUE
-
-dn: CN=group-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 4,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 3,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 2,{6dfe648b-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 1,{6dfe6489-a212-11d0-bcd5-00c04fd8d5b6}
-attributeDisplayNames:: d1dXSG9tZVBhZ2UsQWRyZXNhIHN0csOhbmt5IHYgc8OtdGkgV1dX
-attributeDisplayNames:: dXJsLEFkcmVzYSBzdHLDoW5reSB2IHPDrXRpIFdXVyAoZGFsxaHDrSBhZHJlc3kp
-attributeDisplayNames:: c2FtQWNjb3VudE5hbWUsTsOhemV2IHNrdXBpbnkgKHDFmWVkIFdpbmRvd3MgMjAwMCk=
-attributeDisplayNames:: cGh5c2ljYWxEZWxpdmVyeU9mZmljZU5hbWUsVW3DrXN0xJtuw60ga2FuY2Vsw6HFmWU=
-attributeDisplayNames:: aW5mbyxQb3puw6Fta3k=
-attributeDisplayNames:: bWVtYmVyLMSMbGVub3bDqQ==
-attributeDisplayNames:: bWFuYWdlZEJ5LFNwcsOhdmNlIG9iamVrdHU=
-attributeDisplayNames:: bCxNxJtzdG8=
-attributeDisplayNames:: ZGlzdGluZ3Vpc2hlZE5hbWUsSm3DqW5vIHBvZGxlIHByb3Rva29sIFg1MDA=
-attributeDisplayNames:: ZGVzY3JpcHRpb24sUG9waXM=
-attributeDisplayNames:: Yyxaa3JhdGthIHN0w6F0dQ==
-attributeDisplayNames:: Y24sSm3DqW5v
-classDisplayName: Skupina
-cn: group-Display
-contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
-instanceType: 4
-distinguishedName: CN=group-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: group-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{f5d121ee-c8ac-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-treatAsLeaf: TRUE
-
-dn: CN=domainDNS-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 2,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminContextMenu: 1,{6BA3F852-23C6-11D1-B91F-00A0C9A06D2D}
-adminPropertyPages: 5,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 4,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 3,{6dfe648b-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 1,{6dfe648c-a212-11d0-bcd5-00c04fd8d5b6}
-attributeDisplayNames:: ZGVzY3JpcHRpb24sUG9waXM=
-attributeDisplayNames:: Y24sSm3DqW5v
-classDisplayName:: RG9tw6luYQ==
-cn: domainDNS-Display
-instanceType: 4
-distinguishedName: CN=domainDNS-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: domainDNS-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{f5d121ef-c8ac-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-
-dn: CN=contact-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 4,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 3,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 1,{c5f1645c-c8c9-11d0-bcdb-00c04fd8d5b6}
-attributeDisplayNames:: d1dXSG9tZVBhZ2UsQWRyZXNhIHN0csOhbmt5IHYgc8OtdGkgV1dX
-attributeDisplayNames:: dXJsLEFkcmVzYSBzdHLDoW5reSB2IHPDrXRpIFdXVyAoZGFsxaHDrSBhZHJlc3kp
-attributeDisplayNames:: dGl0bGUsTsOhemV2IGZ1bmtjZQ==
-attributeDisplayNames:: dGVsZXhOdW1iZXIsxIzDrXNsbyBkw6Fsbm9waXN1IChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: dGVsZXBob25lTnVtYmVyLFRlbGVmb25uw60gxI3DrXNsbw==
-attributeDisplayNames:: c3RyZWV0QWRkcmVzcyxVbGljZQ==
-attributeDisplayNames:: c3QsT2tyZXM=
-attributeDisplayNames:: c24sUMWZw61qbWVuw60=
-attributeDisplayNames:: cHJpbWFyeVRlbGV4TnVtYmVyLMSMw61zbG8gZMOhbG5vcGlzdQ==
-attributeDisplayNames:: cHJpbWFyeUludGVybmF0aW9uYWxJU0ROTnVtYmVyLE1lemluw6Fyb2Ruw60gxI3DrXNsbyBJU0RO
-attributeDisplayNames:: cG9zdE9mZmljZUJveCxQTyBCb3g=
-attributeDisplayNames:: cG9zdGFsQ29kZSxQb8WhdG92bsOtIHNtxJtyb3ZhY8OtIMSNw61zbG8=
-attributeDisplayNames:: cGh5c2ljYWxEZWxpdmVyeU9mZmljZU5hbWUsVW3DrXN0xJtuw60ga2FuY2Vsw6HFmWU=
-attributeDisplayNames:: cGVyc29uYWxUaXRsZSxGdW5rY2U=
-attributeDisplayNames:: cGFnZXIsxIzDrXNsbyBvcGVyw6F0b3J1
-attributeDisplayNames:: b3RoZXJUZWxlcGhvbmUsVGVsZWZvbm7DrSDEjcOtc2xvIChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: b3RoZXJQYWdlcizEjMOtc2xvIG9wZXLDoXRvcnUgKGRhbMWhw60gxI3DrXNsYSk=
-attributeDisplayNames:: b3RoZXJNb2JpbGUsxIzDrXNsbyBtb2JpbG7DrWhvIHRlbGVmb251IChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: b3RoZXJNYWlsYm94LEVsZWt0cm9uaWNrw6EgYWRyZXNhIChkYWzFocOtIGFkcmVzeSk=
-attributeDisplayNames:: b3RoZXJJcFBob25lLFRlbGVmb25uw60gxI3DrXNsbyBJUCAoZGFsxaHDrSDEjcOtc2xhKQ==
-attributeDisplayNames:: b3RoZXJIb21lUGhvbmUsVGVsZWZvbm7DrSDEjcOtc2xvIGRvbcWvIChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: b3RoZXJGYWNzaW1pbGVUZWxlcGhvbmVOdW1iZXIsxIzDrXNsbyBmYXh1IChkYWzFocOtIMSNw61zbGEp
-attributeDisplayNames:: bW9iaWxlLMSMw61zbG8gbW9iaWxuw61obyB0ZWxlZm9udQ==
-attributeDisplayNames:: bWlkZGxlTmFtZSwyLiBrxZllc3Ruw60gam3DqW5v
-attributeDisplayNames:: bWVtYmVyT2YsxIxsZW5zdHbDrSB2ZSBza3VwaW7DoWNo
-attributeDisplayNames:: bWFuYWdlcixOYWTFmcOtemVuw70=
-attributeDisplayNames:: bWFpbCxFbGVrdHJvbmlja8OhIGFkcmVzYQ==
-attributeDisplayNames:: bCxNxJtzdG8=
-attributeDisplayNames:: aXBQaG9uZSxUZWxlZm9ubsOtIMSNw61zbG8gSVA=
-attributeDisplayNames:: aW50ZXJuYXRpb25hbElTRE5OdW1iZXIsTWV6aW7DoXJvZG7DrSDEjcOtc2xvIElTRE4gKGRhbMWhw60gxI3DrXNsYSk=
-attributeDisplayNames:: aW5mbyxQb3puw6Fta3k=
-attributeDisplayNames:: aW5pdGlhbHMsSW5pY2nDoWx5
-attributeDisplayNames:: aG9tZVBvc3RhbEFkZHJlc3MsQWRyZXNhIGRvbcWv
-attributeDisplayNames:: aG9tZVBob25lLFRlbGVmb25uw60gxI3DrXNsbyBkb23Frw==
-attributeDisplayNames:: Z2l2ZW5OYW1lLEvFmWVzdG7DrSBqbcOpbm8=
-attributeDisplayNames:: Z2VuZXJhdGlvblF1YWxpZmllcixHZW5lcmHEjW7DrSBwxZnDrXBvbmE=
-attributeDisplayNames:: ZmFjc2ltaWxlVGVsZXBob25lTnVtYmVyLEZheG92w6kgxI3DrXNsbw==
-attributeDisplayNames:: ZW1wbG95ZWVJRCxJRCB6YW3Em3N0bmFuY2U=
-attributeDisplayNames:: ZGl2aXNpb24sRGl2aXpl
-attributeDisplayNames:: ZGlzdGluZ3Vpc2hlZE5hbWUsSm3DqW5vIHBvZGxlIHByb3Rva29sIFg1MDA=
-attributeDisplayNames:: ZGlzcGxheU5hbWUsWm9icmF6b3ZhbsOpIGptw6lubw==
-attributeDisplayNames:: ZGlyZWN0UmVwb3J0cyxQxZnDrW3DrSBwb2TFmcOtemVuw60=
-attributeDisplayNames:: ZGVzY3JpcHRpb24sUG9waXM=
-attributeDisplayNames:: ZGVwYXJ0bWVudCxPZGTEm2xlbsOt
-attributeDisplayNames:: Y29tcGFueSxTcG9sZcSNbm9zdA==
-attributeDisplayNames:: Y29tbWVudCxLb21lbnTDocWZ
-attributeDisplayNames:: Y24sSm3DqW5v
-attributeDisplayNames:: Y28sU3TDoXQ=
-attributeDisplayNames:: Yyxaa3JhdGthIHN0w6F0dQ==
-attributeDisplayNames:: YXNzaXN0YW50LEFzaXN0ZW50
-classDisplayName: Kontakt
-cn: contact-Display
-contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
-instanceType: 4
-distinguishedName: CN=contact-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: contact-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{f5d121f0-c8ac-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-
-dn: CN=domainPolicy-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 4,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 3,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 2,{AAD30A04-E1D0-11d0-B859-00A024CDD4DE}
-adminPropertyPages: 1,{6dfe648e-a212-11d0-bcd5-00c04fd8d5b6}
-classDisplayName:: WsOhc2FkeSBkb23DqW55
-cn: domainPolicy-Display
-contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
-instanceType: 4
-distinguishedName: CN=domainPolicy-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: domainPolicy-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{f5d121f1-c8ac-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-
-dn: CN=localPolicy-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 4,{AAD30A04-E1D0-11d0-B859-00A024CDD4DE}
-adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 1,{6dfe648f-a212-11d0-bcd5-00c04fd8d5b6}
-classDisplayName:: TcOtc3Ruw60gesOhc2FkeQ==
-cn: localPolicy-Display
-contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
-instanceType: 4
-distinguishedName: CN=localPolicy-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: localPolicy-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{f5d121f2-c8ac-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-
-dn: CN=serviceAdministrationPoint-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 5,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 4,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 3,{6dfe648b-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 1,{c5f1645d-c8c9-11d0-bcdb-00c04fd8d5b6}
-classDisplayName:: U2x1xb5iYQ==
-cn: serviceAdministrationPoint-Display
-contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
-instanceType: 4
-distinguishedName: CN=serviceAdministrationPoint-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: serviceAdministrationPoint-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{c5f1645e-c8c9-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-
-dn: CN=computer-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 10,{0F65B1BF-740F-11d1-BBE6-0060081692B3}
-adminPropertyPages: 6,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 5,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 4,{6dfe648b-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 3,{77597368-7b15-11d0-a0c2-080036af3f03}
-adminPropertyPages: 1,{6dfe6492-a212-11d0-bcd5-00c04fd8d5b6}
-attributeDisplayNames:: c2FtQWNjb3VudE5hbWUsTsOhemV2IHBvxI3DrXRhxI1lIChwxZllZCBXaW5kb3dzIDIwMDAp
-attributeDisplayNames:: b3BlcmF0aW5nU3lzdGVtVmVyc2lvbixWZXJ6ZSBvcGVyYcSNbsOtaG8gc3lzdMOpbXU=
-attributeDisplayNames:: b3BlcmF0aW5nU3lzdGVtLE9wZXJhxI1uw60gc3lzdMOpbQ==
-attributeDisplayNames:: bWFuYWdlZEJ5LFNwcsOhdmNlIG9iamVrdHU=
-attributeDisplayNames:: ZGVzY3JpcHRpb24sUG9waXM=
-attributeDisplayNames:: Y24sSm3DqW5v
-classDisplayName:: UG/EjcOtdGHEjQ==
-cn: computer-Display
-contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
-createWizardExt: 1,{D6D8C25A-4E83-11d2-8424-00C04FA372D4}
-instanceType: 4
-distinguishedName: CN=computer-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: computer-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{f5d121f4-c8ac-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-treatAsLeaf: TRUE
-
-dn: CN=printQueue-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 1,{6dfe6493-a212-11d0-bcd5-00c04fd8d5b6}
-attributeDisplayNames:: dmVyc2lvbk51bWJlcixWZXJ6ZSBvYmpla3R1
-attributeDisplayNames:: dXJsLEFkcmVzYSBzdHLDoW5reSB2IHPDrXRpIFdXVw==
-attributeDisplayNames:: c2VydmVyTmFtZSxOw6F6ZXYgc2VydmVydQ==
-attributeDisplayNames:: cHJpbnRTdGFwbGluZ1N1cHBvcnRlZCxQb2Rwb3JhIHNlxaHDrXbDoW7DrQ==
-attributeDisplayNames:: cHJpbnRTaGFyZU5hbWUsTsOhemV2IHNkw61sZW7DqSBwb2xvxb5reQ==
-attributeDisplayNames:: cHJpbnRQYWdlc1Blck1pbnV0ZSxTdHJhbnkgemEgbWludXR1
-attributeDisplayNames:: cHJpbnRSYXRlVW5pdCxKZWRub3RreSByeWNobG9zdGk=
-attributeDisplayNames:: cHJpbnRSYXRlLFJ5Y2hsb3N0
-attributeDisplayNames:: cHJpbnRPd25lcixKbcOpbm8gdmxhc3Ruw61rYQ==
-attributeDisplayNames:: cHJpbnRNZW1vcnksTmFpbnN0YWxvdmFuw6EgcGFtxJvFpQ==
-attributeDisplayNames:: cHJpbnRNZWRpYVN1cHBvcnRlZCxQb2Rwb3JvdmFuw6kgdHlweSBwYXDDrXJ1
-attributeDisplayNames:: cHJpbnRNZWRpYVJlYWR5LFBhcMOtciBrIGRpc3BvemljaQ==
-attributeDisplayNames:: cHJpbnRNYXhSZXNvbHV0aW9uU3VwcG9ydGVkLE1heGltw6FsbsOtIHJvemxpxaFlbsOt
-attributeDisplayNames:: cHJpbnRMYW5ndWFnZSxKYXp5ayB0aXNrw6Fybnk=
-attributeDisplayNames:: cHJpbnRlck5hbWUsSm3DqW5v
-attributeDisplayNames:: cHJpbnREdXBsZXhTdXBwb3J0ZWQsUG9kcG9yYSBvYm91c3RyYW5uw6lobyB0aXNrdQ==
-attributeDisplayNames:: cHJpbnRDb2xvcixQb2Rwb3JhIGJhcmV2bsOpaG8gdGlza3U=
-attributeDisplayNames:: cHJpbnRDb2xsYXRlLFBvZHBvcmEga29tcGxldG92w6Fuw60ga29wacOt
-attributeDisplayNames:: cHJpbnRCaW5OYW1lcyxWc3R1cG7DrSB6w6Fzb2Juw61reQ==
-attributeDisplayNames:: cG9ydE5hbWUsUG9ydA==
-attributeDisplayNames:: bG9jYXRpb24sVW3DrXN0xJtuw60=
-attributeDisplayNames:: ZHJpdmVyTmFtZSxNb2RlbA==
-attributeDisplayNames:: ZGVzY3JpcHRpb24sS29tZW50w6HFmQ==
-attributeDisplayNames:: Y29udGFjdE5hbWUsS29udGFrdA==
-attributeDisplayNames:: YXNzZXROdW1iZXIsSW52ZW50w6FybsOtIMSNw61zbG8=
-attributeDisplayNames:: dU5DTmFtZSxOw6F6ZXYgc8OtdMSb
-attributeDisplayNames:: Y24sTsOhemV2IGFkcmVzw6HFmW92w6kgc2x1xb5ieQ==
-classDisplayName:: VGlza8Ohcm5h
-cn: printQueue-Display
-contextMenu: 0,{62AE1F9A-126A-11D0-A14B-0800361B1103}
-instanceType: 4
-distinguishedName: CN=printQueue-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: printQueue-Display
-shellPropertyPages: 2,{dde2c5e9-c8ae-11d0-bcdb-00c04fd8d5b6}
-shellPropertyPages: 1,{f5d121f5-c8ac-11d0-bcdb-00c04fd8d5b6}
-showInAdvancedViewOnly: TRUE
-
-dn: CN=site-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 3,{bc019ba0-d46d-11d1-8091-00a024c48131}
-adminContextMenu: 2,{6BA3F852-23C6-11D1-B91F-00A0C9A06D2D}
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 5,{bc019ba0-d46d-11d1-8091-00a024c48131}
-adminPropertyPages: 4,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 3,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 2,{77597368-7b15-11d0-a0c2-080036af3f03}
-adminPropertyPages: 1,{717EF4FA-AC8D-11D0-B945-00C04FD8D5B0}
-classDisplayName:: U8OtxaU=
-cn: site-Display
-instanceType: 4
-distinguishedName: CN=site-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-objectCategory: CN=Display-Specifier,CN=Schema,<Configuration NC Distinguished Name>
-objectClass: displaySpecifier
-name: site-Display
-showInAdvancedViewOnly: TRUE
-
-dn: CN=server-Display,CN=405,CN=DisplaySpecifiers,<Configuration NC Distinguished Name>
-changetype: add
-adminContextMenu: 1,{08eb4fa6-6ffd-11d1-b0e0-00c04fd8dca6}
-adminPropertyPages: 3,{4E40F770-369C-11d0-8922-00A024AB2DBB}
-adminPropertyPages: 2,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
-adminPropertyPages: 1,{6dfe6494-a212-11d0-bcd5-00c04fd8d5b6}
-classDisplayName: Server


-- 
Samba Shared Repository


More information about the samba-cvs mailing list