Home | History | Annotate | Line # | Download | only in ns3
      1 /*
      2  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
      3  *
      4  * SPDX-License-Identifier: MPL-2.0
      5  *
      6  * This Source Code Form is subject to the terms of the Mozilla Public
      7  * License, v. 2.0.  If a copy of the MPL was not distributed with this
      8  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
      9  *
     10  * See the COPYRIGHT file distributed with this work for additional
     11  * information regarding copyright ownership.
     12  */
     13 
     14 {% set zones = ["autosign", "manual"] %}
     15 
     16 include "kasp.conf";
     17 include "named.common.conf";
     18 
     19 {% for tld in zones %}
     20 zone "step1.enable-dnssec.@tld@" {
     21 	type primary;
     22 	file "step1.enable-dnssec.@tld@.db";
     23 	dnssec-policy "enable-dnssec-@tld@";
     24 };
     25 zone "step2.enable-dnssec.@tld@" {
     26 	type primary;
     27 	file "step2.enable-dnssec.@tld@.db";
     28 	dnssec-policy "enable-dnssec-@tld@";
     29 };
     30 zone "step3.enable-dnssec.@tld@" {
     31 	type primary;
     32 	file "step3.enable-dnssec.@tld@.db";
     33 	dnssec-policy "enable-dnssec-@tld@";
     34 };
     35 zone "step4.enable-dnssec.@tld@" {
     36 	type primary;
     37 	file "step4.enable-dnssec.@tld@.db";
     38 	dnssec-policy "enable-dnssec-@tld@";
     39 };
     40 
     41 {% endfor %}
     42