setup.sh revision 1.1.1.1
1#!/bin/sh -e
2#
3# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
4#
5# This Source Code Form is subject to the terms of the Mozilla Public
6# License, v. 2.0. If a copy of the MPL was not distributed with this
7# file, You can obtain one at http://mozilla.org/MPL/2.0/.
8#
9# See the COPYRIGHT file distributed with this work for additional
10# information regarding copyright ownership.
11
12# shellcheck source=conf.sh
13. "$SYSTEMTESTTOP/conf.sh"
14
15set -e
16
17$SHELL clean.sh
18
19mkdir keys
20
21copy_setports ns2/named.conf.in ns2/named.conf
22copy_setports ns3/named.conf.in ns3/named.conf
23copy_setports ns4/named.conf.in ns4/named.conf
24copy_setports ns5/named.conf.in ns5/named.conf
25copy_setports ns6/named.conf.in ns6/named.conf
26
27# Setup zones
28(
29	cd ns2
30	$SHELL setup.sh
31)
32(
33	cd ns3
34	$SHELL setup.sh
35)
36(
37	cd ns4
38	$SHELL setup.sh
39)
40(
41	cd ns5
42	$SHELL setup.sh
43)
44(
45	cd ns6
46	$SHELL setup.sh
47)
48