svn commit: samba r19603 - in branches/SAMBA_4_0/source/script/tests: .

abartlet at samba.org abartlet at samba.org
Tue Nov 7 04:26:45 GMT 2006


Author: abartlet
Date: 2006-11-07 04:26:45 +0000 (Tue, 07 Nov 2006)
New Revision: 19603

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

Log:
Make it easier to control the debug level of smbd.

Ensure that we don't accept kerberos logins without a PAC (to ensure
we actually produce a PAC in the KDC)

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/script/tests/mktestsetup.sh


Changeset:
Modified: branches/SAMBA_4_0/source/script/tests/mktestsetup.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/mktestsetup.sh	2006-11-07 02:35:58 UTC (rev 19602)
+++ branches/SAMBA_4_0/source/script/tests/mktestsetup.sh	2006-11-07 04:26:45 UTC (rev 19603)
@@ -16,6 +16,10 @@
 	SHARE_BACKEND=classic
 fi
 
+if test -z "$SMBD_LOGLEVEL"; then
+	SMBD_LOGLEVEL=1
+fi
+
 DOMAIN=SAMBADOMAIN
 USERNAME=administrator
 REALM=SAMBA.EXAMPLE.COM
@@ -108,7 +112,11 @@
 	torture:subunitdir = $SRCDIR/bin/torture
 
 	system:anonymous = true
+#We don't want to pass our self-tests if the PAC code is wrong
+        gensec:require_pac = true
 
+        log level = $SMBD_LOGLEVEL
+
 [tmp]
 	path = $TMPDIR
 	read only = no



More information about the samba-cvs mailing list