s4-provision: Make BIND9_DLZ as the default backend for DNS
[ira/wip.git] / source4 / setup / provision
index f4f6b100423a4f7a81a4d380aa40825b45b2f6b7..cea8823d09676c8e64aa1badf8c19152d816c0e6 100755 (executable)
@@ -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