summaryrefslogtreecommitdiff
path: root/wintest
diff options
context:
space:
mode:
authorZahari Zahariev <zahari.zahariev@postpath.com>2010-12-13 18:14:51 +0200
committerAndrew Bartlett <abartlet@samba.org>2010-12-16 15:54:29 +1100
commit94b149f3cb6c82834f83b73928f5b40e388eb6e5 (patch)
tree2cbc001752f57dc0df59dbcb5b93638bc7693a62 /wintest
parenta06519a579f04c4728af01a169ba79c7149994db (diff)
downloadsamba-94b149f3cb6c82834f83b73928f5b40e388eb6e5.tar.gz
samba-94b149f3cb6c82834f83b73928f5b40e388eb6e5.tar.bz2
samba-94b149f3cb6c82834f83b73928f5b40e388eb6e5.zip
Typos in wintest
Diffstat (limited to 'wintest')
-rwxr-xr-xwintest/test-s4-howto.py2
-rw-r--r--wintest/wintest.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/wintest/test-s4-howto.py b/wintest/test-s4-howto.py
index c4a430c7b5..cb9862b8b9 100755
--- a/wintest/test-s4-howto.py
+++ b/wintest/test-s4-howto.py
@@ -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)
diff --git a/wintest/wintest.py b/wintest/wintest.py
index 10bc562955..2939b0f2ee 100644
--- a/wintest/wintest.py
+++ b/wintest/wintest.py
@@ -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)