1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-24 10:50:22 +03:00

Typos in wintest

This commit is contained in:
Zahari Zahariev 2010-12-13 18:14:51 +02:00 committed by Andrew Bartlett
parent a06519a579
commit 94b149f3cb
2 changed files with 3 additions and 3 deletions

View File

@ -610,7 +610,7 @@ def test_howto(t):
create_shares(t)
start_s4(t)
test_smbclient(t)
t.restart_bind(kerberos_support=True, include='{PREFIX}/private/named.conf')
t.restart_bind(kerberos_support=True, include='${PREFIX}/private/named.conf')
test_dns(t)
test_kerberos(t)
test_dyndns(t)

View File

@ -445,7 +445,7 @@ options {
self.rndc_cmd("flush")
def restart_bind(self, kerberos_support=False, include=None):
self.configure_bind(keberos_support=kerberos_support, include=include)
self.configure_bind(kerberos_support=kerberos_support, include=include)
self.stop_bind()
self.start_bind()
@ -582,7 +582,7 @@ options {
if i != 0:
self.info("Firewall disable failed - ignoring")
child.expect("C:")
def set_dns(self, child):
child.sendline('netsh interface ip set dns "${WIN_NIC}" static ${INTERFACE_IP} primary')
i = child.expect(['C:', pexpect.EOF, pexpect.TIMEOUT], timeout=5)