1#!/bin/sh
2#
3# Copyright (C) 2004, 2007, 2012, 2014  Internet Systems Consortium, Inc. ("ISC")
4# Copyright (C) 2000, 2001  Internet Software Consortium.
5#
6# Permission to use, copy, modify, and/or distribute this software for any
7# purpose with or without fee is hereby granted, provided that the above
8# copyright notice and this permission notice appear in all copies.
9#
10# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16# PERFORMANCE OF THIS SOFTWARE.
17
18cp -f ns2/example1.db ns2/example.db
19cp -f ns2/named1.conf ns2/named.conf
20cp -f ns3/named1.conf ns3/named.conf
21rm -f ns2/external/K*
22rm -f ns2/external/inline.db.signed
23rm -f ns2/external/inline.db.signed.jnl
24rm -f ns2/internal/K*
25rm -f ns2/internal/inline.db.signed
26rm -f ns2/internal/inline.db.signed.jnl
27
28SYSTEMTESTTOP=..
29. $SYSTEMTESTTOP/conf.sh
30
31test -r $RANDFILE || $GENRANDOM 400 $RANDFILE
32
33#
34# We remove k1 and k2 as KEYGEN is deterministic when given the
35# same source of "random" data and we want different keys for
36# internal and external instances of inline.
37#
38$KEYGEN -K ns2/internal -r $RANDFILE -3q inline > /dev/null 2>&1
39$KEYGEN -K ns2/internal -r $RANDFILE -3qfk inline > /dev/null 2>&1
40k1=`$KEYGEN -K ns2/external -r $RANDFILE -3q inline 2> /dev/null`
41k2=`$KEYGEN -K ns2/external -r $RANDFILE -3qfk inline 2> /dev/null`
42$KEYGEN -K ns2/external -r $RANDFILE -3q inline > /dev/null 2>&1
43$KEYGEN -K ns2/external -r $RANDFILE -3qfk inline > /dev/null 2>&1
44test -n "$k1" && rm -f ns2/external/$k1.*
45test -n "$k2" && rm -f ns2/external/$k2.*
46