From 56058ea597836ed61a8abcd3c26732f2829ee641 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Tue, 11 Sep 2012 09:07:47 +0200 Subject: s4 dns: use the internal DNS server per default --- wintest/wintest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wintest') 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() -- cgit