diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-09-12 19:40:16 +1000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-09-12 16:51:29 +0200 |
commit | 72720d6ea0ec9b340e217986a3e136ef0635bd1f (patch) | |
tree | df48b6ce06b0787529184e162dc0b86f31521864 /wintest | |
parent | ee4d1c406208d67aaa949934da78cd350e69ccf0 (diff) | |
download | samba-72720d6ea0ec9b340e217986a3e136ef0635bd1f.tar.gz |
wintest: Fix --use-ntvfs handling
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'wintest')
-rwxr-xr-x | wintest/test-s4-howto.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wintest/test-s4-howto.py b/wintest/test-s4-howto.py index a2eded64549..c20a4fe963d 100755 --- a/wintest/test-s4-howto.py +++ b/wintest/test-s4-howto.py @@ -38,9 +38,11 @@ def provision_s4(t, func_level="2008"): '--host-ip=${INTERFACE_IP}', '--option=bind interfaces only=yes', '--option=rndc command=${RNDC} -c${PREFIX}/etc/rndc.conf', - '${USE_NTVFS}', '--dns-backend=${NAMESERVER_BACKEND}', '${DNS_FORWARDER}'] + if t.getvar('USE_NTVFS'): + provision.append('${USE_NTVFS}') + if t.getvar('INTERFACE_IPV6'): provision.append('--host-ip6=${INTERFACE_IPV6}') t.run_cmd(provision) |