Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Removed deprecated named options #4685

Merged
merged 1 commit into from
May 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2019, 2022 Eurotech and/or its affiliates and others
* Copyright (c) 2019, 2023 Eurotech and/or its affiliates and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -287,7 +287,7 @@ private String getForwardingNamedFile() {
sb.append("};\n");
sb.append("\tmax-cache-ttl 30;\n");
sb.append("\tmax-ncache-ttl 30;\n");
sb.append("\tdnssec-enable yes;\n").append("\tdnssec-validation yes;\n").append("\tdnssec-lookaside auto;\n");
sb.append("\tdnssec-validation no;\n");
sb.append("};\n") //
.append("zone \".\" IN {\n") //
.append("\ttype hint;\n") //
Expand Down Expand Up @@ -322,9 +322,7 @@ private String getDefaultNamedFile() {
.append("\n") //
.append("\tmax-cache-ttl 30;\n") //
.append("\tmax-ncache-ttl 30;\n") //
.append("\tdnssec-enable yes;\n") //
.append("\tdnssec-validation yes;\n") //
.append("\tdnssec-lookaside auto;\n") //
.append("\tdnssec-validation no;\n") //
.append("\n") //
.append("\t/* Path to ISC DLV key */\n") //
.append("\nbindkeys-file \"/etc/named.iscdlv.key\";\n") //
Expand Down