1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-03 12:58:35 +03:00

wintest: Fix --use-ntvfs handling

Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Andrew Bartlett 2012-09-12 19:40:16 +10:00 committed by Stefan Metzmacher
parent ee4d1c4062
commit 72720d6ea0

View File

@ -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)