diff options
Diffstat (limited to 'source4/setup/provision')
-rwxr-xr-x | source4/setup/provision | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/setup/provision b/source4/setup/provision index f4f6b100423..cea8823d096 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 |