1#!/bin/sh 2 3# Copyright (C) Internet Systems Consortium, Inc. ("ISC") 4# 5# SPDX-License-Identifier: MPL-2.0 6# 7# This Source Code Form is subject to the terms of the Mozilla Public 8# License, v. 2.0. If a copy of the MPL was not distributed with this 9# file, you can obtain one at https://mozilla.org/MPL/2.0/. 10# 11# See the COPYRIGHT file distributed with this work for additional 12# information regarding copyright ownership. 13 14. ../conf.sh 15 16cp ns1/root.db.in ns1/root.db 17 18touch ns2/trusted.conf 19cp ns2/nsec3-loop.db.in ns2/nsec3-loop.db 20cp ns2/bits.db.in ns2/bits.db 21cp ns2/bits.db.in ns2/nokeys.db 22cp ns2/bits.db.in ns2/removedkeys-secondary.db 23cp ns2/bits.db.in ns2/retransfer.db 24 25cp ns3/primary.db.in ns3/primary.db 26cp ns3/primary.db.in ns3/dynamic.db 27cp ns3/primary.db.in ns3/updated.db 28cp ns3/primary.db.in ns3/unsupported.db 29cp ns3/primary.db.in ns3/expired.db 30cp ns3/primary.db.in ns3/nsec3.db 31cp ns3/primary.db.in ns3/externalkey.db 32cp ns3/primary.db.in ns3/delayedkeys.db 33cp ns3/primary.db.in ns3/removedkeys-primary.db 34cp ns3/include.db.in ns3/include.db 35 36mkdir ns3/removedkeys 37 38touch ns4/trusted.conf 39cp ns4/noixfr.db.in ns4/noixfr.db 40 41copy_setports ns1/named.conf.in ns1/named.conf 42copy_setports ns2/named.conf.in ns2/named.conf 43copy_setports ns3/named.conf.in ns3/named.conf 44cp ns3/delayedkeys.conf.1 ns3/delayedkeys.conf 45copy_setports ns4/named.conf.in ns4/named.conf 46copy_setports ns5/named.conf.pre ns5/named.conf 47copy_setports ns6/named.conf.in ns6/named.conf 48copy_setports ns7/named.conf.in ns7/named.conf 49copy_setports ns8/named.conf.in ns8/named.conf 50 51( 52 cd ns3 53 $SHELL -e sign.sh 54) 55( 56 cd ns1 57 $SHELL -e sign.sh 58) 59( 60 cd ns7 61 $SHELL -e sign.sh 62) 63( 64 cd ns8 65 $SHELL -e sign.sh 66) 67