diff options
author | Stefan Metzmacher <metze@samba.org> | 2016-04-25 16:02:22 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2016-04-28 16:51:17 +0200 |
commit | 4de43387235cb17a185fdd1afd658972e8c174ef (patch) | |
tree | dbe78ab31a013d18a55cec390b856d29ed72514e /selftest/target | |
parent | 587b5db7979c1ca1055f5bfd81ab79606cd3c2dd (diff) | |
download | samba-4de43387235cb17a185fdd1afd658972e8c174ef.tar.gz |
selftest:Samba4: let fl2000dc use Windows2000 style SPNEGO/NTLMSSP
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11849
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'selftest/target')
-rwxr-xr-x | selftest/target/Samba4.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/selftest/target/Samba4.pm b/selftest/target/Samba4.pm index 7bd4cada371..2d30dcf1499 100755 --- a/selftest/target/Samba4.pm +++ b/selftest/target/Samba4.pm @@ -1377,6 +1377,10 @@ sub provision_fl2000dc($$) my ($self, $prefix) = @_; print "PROVISIONING DC WITH FOREST LEVEL 2000..."; + my $extra_conf_options = " + spnego:simulate_w2k=yes + ntlmssp_server:force_old_spnego=yes +"; my $ret = $self->provision($prefix, "domain controller", "dc5", @@ -1386,7 +1390,7 @@ sub provision_fl2000dc($$) "locDCpass5", undef, undef, - "", + $extra_conf_options, "", undef); |