diff options
author | Andrew Bartlett <abartlet@samba.org> | 2015-06-19 16:49:41 +1200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2015-06-24 19:33:23 +0200 |
commit | 45b7992428f646b8586974e1d86e3cdad869b059 (patch) | |
tree | b84992c6595424f888697b792211c10c0ebbdfa1 /selftest | |
parent | fb63fd1dc48b8ed3f714f93bab872bb907df52e1 (diff) | |
download | samba-45b7992428f646b8586974e1d86e3cdad869b059.tar.gz |
Allow winbind removal by matching delays to Samba3.pm
When using winbindd with the ntvfs file server, the responses are faster than
they were in the past. Therefore, set:
posix:sharedelay = 100000
posix:writetimeupdatedelay = 500000
to the values used in Samba3.pm to allow the tests to pass against the NTVFS
file server without the internal winbind.
This allows the internal winbind to be removed.
Andrew Bartlett
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'selftest')
-rwxr-xr-x | selftest/target/Samba4.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/selftest/target/Samba4.pm b/selftest/target/Samba4.pm index 32114c3a5ec..6ee56b393c3 100755 --- a/selftest/target/Samba4.pm +++ b/selftest/target/Samba4.pm @@ -925,16 +925,16 @@ sub provision($$$$$$$$$$) [tmp] path = $ctx->{share} read only = no - posix:sharedelay = 10000 + posix:sharedelay = 100000 posix:oplocktimeout = 3 - posix:writetimeupdatedelay = 50000 + posix:writetimeupdatedelay = 500000 [xcopy_share] path = $ctx->{share} read only = no - posix:sharedelay = 10000 + posix:sharedelay = 100000 posix:oplocktimeout = 3 - posix:writetimeupdatedelay = 50000 + posix:writetimeupdatedelay = 500000 create mask = 777 force create mode = 777 @@ -949,16 +949,16 @@ sub provision($$$$$$$$$$) [test1] path = $ctx->{share}/test1 read only = no - posix:sharedelay = 10000 + posix:sharedelay = 100000 posix:oplocktimeout = 3 - posix:writetimeupdatedelay = 50000 + posix:writetimeupdatedelay = 500000 [test2] path = $ctx->{share}/test2 read only = no - posix:sharedelay = 10000 + posix:sharedelay = 100000 posix:oplocktimeout = 3 - posix:writetimeupdatedelay = 50000 + posix:writetimeupdatedelay = 500000 [cifs] path = $ctx->{share}/_ignore_cifs_ |