svn commit: samba r25088 - in branches/SAMBA_3_2/examples/LDAP: .

obnox at samba.org obnox at samba.org
Tue Sep 11 16:25:48 GMT 2007


Author: obnox
Date: 2007-09-11 16:25:47 +0000 (Tue, 11 Sep 2007)
New Revision: 25088

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25088

Log:
Change the objectclass sambaTrustedDomainPassword to
have the current and possibly the previous trust password
stored as clear text passwords. (Previous use of NTPassword
was a mistake - this is a hash value.)

Michael


Modified:
   branches/SAMBA_3_2/examples/LDAP/samba.schema


Changeset:
Modified: branches/SAMBA_3_2/examples/LDAP/samba.schema
===================================================================
--- branches/SAMBA_3_2/examples/LDAP/samba.schema	2007-09-11 16:18:14 UTC (rev 25087)
+++ branches/SAMBA_3_2/examples/LDAP/samba.schema	2007-09-11 16:25:47 UTC (rev 25088)
@@ -457,9 +457,20 @@
 	EQUALITY integerMatch
 	SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
 
+#
+attributetype ( 1.3.6.1.4.1.7165.2.1.68 NAME 'sambaClearTextPassword'
+	DESC 'Clear text password (used for trusted domain passwords)'
+	EQUALITY octetStringMatch
+	1.3.6.1.4.1.1466.115.121.1.40 )
 
+#
+attributetype ( 1.3.6.1.4.1.7165.2.1.69 NAME 'sambaPreviousClearTextPassword'
+	DESC 'Previous clear text password (used for trusted domain passwords)'
+	EQUALITY octetStringMatch
+	1.3.6.1.4.1.1466.115.121.1.40 )
 
 
+
 #######################################################################
 ##              objectClasses used by Samba 3.0 schema               ##
 #######################################################################
@@ -507,7 +518,8 @@
 objectclass ( 1.3.6.1.4.1.7165.2.2.15 NAME 'sambaTrustedDomainPassword' SUP top STRUCTURAL
 	DESC 'Samba Trusted Domain Password'
 	MUST ( sambaDomainName $ sambaSID $
-	       sambaNTPassword $ sambaPwdLastSet ))
+	       sambaClearTextPassword $ sambaPwdLastSet )
+	MAY  ( sambaPreviousClearTextPassword ))
 
 ##
 ## Whole-of-domain info



More information about the samba-cvs mailing list