summaryrefslogtreecommitdiff
path: root/wintest
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2012-09-11 09:07:47 +0200
committerStefan Metzmacher <metze@samba.org>2012-09-12 16:51:29 +0200
commit56058ea597836ed61a8abcd3c26732f2829ee641 (patch)
tree86cda9ded42617cee9a3e6d76307011ebaa91699 /wintest
parent2af8129085042b51ac052653942116ad5998f701 (diff)
downloadsamba-56058ea597836ed61a8abcd3c26732f2829ee641.tar.gz
samba-56058ea597836ed61a8abcd3c26732f2829ee641.tar.bz2
samba-56058ea597836ed61a8abcd3c26732f2829ee641.zip
s4 dns: use the internal DNS server per default
Diffstat (limited to 'wintest')
-rw-r--r--wintest/wintest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py
index 6257fb45dd..4ad2d8a651 100644
--- a/wintest/wintest.py
+++ b/wintest/wintest.py
@@ -900,11 +900,11 @@ RebootOnCompletion=No
self.parser.add_option("--use-ntvfs", action='store_true', default=False, help='use NTVFS for the fileserver')
self.parser.add_option("--dns-backend", type="choice",
choices=["SAMBA_INTERNAL", "BIND9_FLATFILE", "BIND9_DLZ", "NONE"],
- help="The DNS server backend. SAMBA_INTERNAL is the builtin name server, " \
+ help="The DNS server backend. SAMBA_INTERNAL is the builtin name server (default), " \
"BIND9_FLATFILE uses bind9 text database to store zone information, " \
- "BIND9_DLZ uses samba4 AD to store zone information (default), " \
+ "BIND9_DLZ uses samba4 AD to store zone information, " \
"NONE skips the DNS setup entirely (not recommended)",
- default="BIND9_DLZ")
+ default="SAMBA_INTERNAL")
self.opts, self.args = self.parser.parse_args()