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 --- source4/scripting/bin/samba_upgradedns | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/scripting/bin') diff --git a/source4/scripting/bin/samba_upgradedns b/source4/scripting/bin/samba_upgradedns index c1220bcc26..efda448d48 100755 --- a/source4/scripting/bin/samba_upgradedns +++ b/source4/scripting/bin/samba_upgradedns @@ -238,8 +238,8 @@ if __name__ == '__main__': parser.add_option_group(credopts) parser.add_option("--dns-backend", type="choice", metavar="", - choices=["SAMBA_INTERNAL", "BIND9_DLZ"], default="BIND9_DLZ", - help="The DNS server backend, default BIND9_DLZ") + choices=["SAMBA_INTERNAL", "BIND9_DLZ"], default="SAMBA_INTERNAL", + help="The DNS server backend, default SAMBA_INTERNAL") parser.add_option("--migrate", type="choice", metavar="", choices=["yes","no"], default="yes", help="Migrate existing zone data, default yes") @@ -248,7 +248,7 @@ if __name__ == '__main__': opts = parser.parse_args()[0] if opts.dns_backend is None: - opts.dns_backend = 'DLZ_BIND9' + opts.dns_backend = 'SAMBA_INTERNAL' if opts.migrate: autofill = False -- cgit