From 1e935d1bdc095187b68cd93ff8a1ee9498f8ad11 Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Fri, 25 Nov 2011 15:43:53 +1100 Subject: s4-provision: Make BIND9_DLZ as the default backend for DNS --- source4/setup/provision | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/setup/provision') diff --git a/source4/setup/provision b/source4/setup/provision index f4f6b10042..cea8823d09 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -84,8 +84,8 @@ parser.add_option("--machinepass", type="string", metavar="PASSWORD", parser.add_option("--dns-backend", type="choice", metavar="NAMESERVER-BACKEND", choices=["SAMBA_INTERNAL", "BIND9_FLATFILE", "BIND9_DLZ", "NONE"], help="The DNS server backend. SAMBA_INTERNAL is the builtin name server, " \ - "BIND9_FLATFILE uses bind9 text database to store zone information (default), " \ - "BIND9_DLZ uses samba4 AD to store zone information, " \ + "BIND9_FLATFILE uses bind9 text database to store zone information, " \ + "BIND9_DLZ uses samba4 AD to store zone information (default), " \ "NONE skips the DNS setup entirely (not recommended)") parser.add_option("--dnspass", type="string", metavar="PASSWORD", help="choose dns password (otherwise random)") @@ -204,7 +204,7 @@ elif opts.function_level == "2008_R2": dom_for_fun_level = DS_DOMAIN_FUNCTION_2008_R2 if opts.dns_backend is None: - dns_backend = "BIND9_FLATFILE" + dns_backend = "BIND9_DLZ" else: dns_backend = opts.dns_backend -- cgit