Use jinja2 templates in synthfromdnssec test

- Merge ns*/statistics-channels.conf.in config snippets into
  conditionally rendered section in ns*/named.conf.j2 files.
This commit is contained in:
Nicki Křížek 2025-12-05 17:19:26 +01:00
parent 8db37ac31c
commit 719c656d2b
13 changed files with 30 additions and 113 deletions

View file

@ -35,7 +35,11 @@ controls {
inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};
include "statistics-channels.conf";
{% if FEATURE_LIBXML2 == "1" or FEATURE_JSON_C == "1" %}
statistics-channels {
inet 10.53.0.1 port @EXTRAPORT1@ allow { any; };
};
{% endif %}
zone "." {
type primary;

View file

@ -1,16 +0,0 @@
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
statistics-channels {
inet 10.53.0.1 port @EXTRAPORT1@ allow { any; };
};

View file

@ -35,7 +35,11 @@ controls {
inet 10.53.0.2 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};
include "statistics-channels.conf";
{% if FEATURE_LIBXML2 == "1" or FEATURE_JSON_C == "1" %}
statistics-channels {
inet 10.53.0.2 port @EXTRAPORT1@ allow { any; };
};
{% endif %}
zone "." {
type hint;

View file

@ -1,16 +0,0 @@
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
statistics-channels {
inet 10.53.0.2 port @EXTRAPORT1@ allow { any; };
};

View file

@ -35,7 +35,11 @@ controls {
inet 10.53.0.3 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};
include "statistics-channels.conf";
{% if FEATURE_LIBXML2 == "1" or FEATURE_JSON_C == "1" %}
statistics-channels {
inet 10.53.0.3 port @EXTRAPORT1@ allow { any; };
};
{% endif %}
zone "." {
type hint;

View file

@ -1,16 +0,0 @@
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
statistics-channels {
inet 10.53.0.3 port @EXTRAPORT1@ allow { any; };
};

View file

@ -36,7 +36,11 @@ controls {
inet 10.53.0.4 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};
include "statistics-channels.conf";
{% if FEATURE_LIBXML2 == "1" or FEATURE_JSON_C == "1" %}
statistics-channels {
inet 10.53.0.4 port @EXTRAPORT1@ allow { any; };
};
{% endif %}
zone "." {
type hint;

View file

@ -1,16 +0,0 @@
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
statistics-channels {
inet 10.53.0.4 port @EXTRAPORT1@ allow { any; };
};

View file

@ -37,7 +37,11 @@ controls {
inet 10.53.0.5 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};
include "statistics-channels.conf";
{% if FEATURE_LIBXML2 == "1" or FEATURE_JSON_C == "1" %}
statistics-channels {
inet 10.53.0.5 port @EXTRAPORT1@ allow { any; };
};
{% endif %}
zone "." {
type hint;

View file

@ -1,16 +0,0 @@
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
statistics-channels {
inet 10.53.0.5 port @EXTRAPORT1@ allow { any; };
};

View file

@ -36,7 +36,11 @@ controls {
inet 10.53.0.6 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};
include "statistics-channels.conf";
{% if FEATURE_LIBXML2 == "1" or FEATURE_JSON_C == "1" %}
statistics-channels {
inet 10.53.0.6 port @EXTRAPORT1@ allow { any; };
};
{% endif %}
zone "." {
type hint;

View file

@ -1,16 +0,0 @@
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
statistics-channels {
inet 10.53.0.6 port @EXTRAPORT1@ allow { any; };
};

View file

@ -16,17 +16,6 @@
set -e
for d in ns1 ns2 ns3 ns4 ns5 ns6; do
conf=named.conf
copy_setports "${d}/${conf}.in" "${d}/${conf}"
conf=statistics-channels.conf
if $FEATURETEST --have-libxml2 || $FEATURETEST --have-json-c; then
copy_setports "${d}/${conf}.in" "${d}/${conf}"
else
echo "" >"${d}/${conf}"
fi
done
(
cd ns1
$SHELL sign.sh