2020-10-13 08:39:21 -04:00
|
|
|
#!/bin/sh -e
|
2021-06-03 02:37:05 -04:00
|
|
|
|
2020-10-13 08:39:21 -04:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
2021-06-03 02:37:05 -04:00
|
|
|
#
|
2020-10-13 08:39:21 -04:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
# shellcheck source=conf.sh
|
|
|
|
|
. ../conf.sh
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
2022-10-11 09:17:53 -04:00
|
|
|
copy_setports ns2/named.conf.in ns2/named.conf
|
|
|
|
|
(
|
|
|
|
|
cd ns2
|
|
|
|
|
$SHELL setup.sh
|
|
|
|
|
)
|
2022-08-24 21:05:40 -04:00
|
|
|
|
2024-01-24 09:38:55 -05:00
|
|
|
if [ $RSASHA1_SUPPORTED = 0 ]; then
|
2022-08-24 21:05:40 -04:00
|
|
|
copy_setports ns3/named-fips.conf.in ns3/named.conf
|
|
|
|
|
else
|
|
|
|
|
copy_setports ns3/named-fips.conf.in ns3/named-fips.conf
|
|
|
|
|
# includes named-fips.conf
|
2024-12-20 19:39:49 -05:00
|
|
|
cp ns3/named1.conf.in ns3/named.conf
|
2022-08-24 21:05:40 -04:00
|
|
|
fi
|
2020-10-13 08:39:21 -04:00
|
|
|
(
|
|
|
|
|
cd ns3
|
|
|
|
|
$SHELL setup.sh
|
|
|
|
|
)
|