2000-05-19 18:45:47 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
#
|
2003-03-05 23:38:29 -05:00
|
|
|
# Copyright (C) 2000, 2001, 2003 Internet Software Consortium.
|
2000-07-31 21:33:37 -04:00
|
|
|
#
|
2000-05-19 18:45:47 -04:00
|
|
|
# Permission to use, copy, modify, and distribute this software for any
|
|
|
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
|
|
|
# copyright notice and this permission notice appear in all copies.
|
2000-07-31 21:33:37 -04:00
|
|
|
#
|
2000-07-27 05:55:03 -04:00
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
|
|
|
# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
|
# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
|
|
|
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
|
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
|
|
|
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2000-05-19 18:45:47 -04:00
|
|
|
|
2003-10-17 03:06:16 -04:00
|
|
|
# $Id: conf.sh.in,v 1.23.2.2.4.1 2003/10/17 07:06:13 marka Exp $
|
2000-06-22 18:00:42 -04:00
|
|
|
|
2000-07-31 21:33:37 -04:00
|
|
|
#
|
2000-05-15 18:53:15 -04:00
|
|
|
# Common configuration data for system tests, to be sourced into
|
|
|
|
|
# other shell scripts.
|
|
|
|
|
#
|
|
|
|
|
|
2000-06-05 15:36:44 -04:00
|
|
|
# Find the top of the BIND9 tree.
|
|
|
|
|
TOP=${SYSTEMTESTTOP:=.}/../../..
|
|
|
|
|
|
|
|
|
|
# Make it absolute so that it continues to work after we cd.
|
|
|
|
|
TOP=`cd $TOP && pwd`
|
2000-05-15 18:53:15 -04:00
|
|
|
|
|
|
|
|
NAMED=$TOP/bin/named/named
|
2000-09-15 21:42:06 -04:00
|
|
|
# We must use "named -l" instead of "lwresd" because argv[0] is lost
|
|
|
|
|
# if the program is libtoolized.
|
|
|
|
|
LWRESD="$TOP/bin/named/named -l"
|
2000-05-22 13:31:45 -04:00
|
|
|
DIG=$TOP/bin/dig/dig
|
2000-07-10 07:38:48 -04:00
|
|
|
RNDC=$TOP/bin/rndc/rndc
|
2000-07-05 22:10:46 -04:00
|
|
|
NSUPDATE=$TOP/bin/nsupdate/nsupdate
|
2000-05-18 17:45:10 -04:00
|
|
|
KEYGEN=$TOP/bin/dnssec/dnssec-keygen
|
|
|
|
|
SIGNER=$TOP/bin/dnssec/dnssec-signzone
|
|
|
|
|
KEYSIGNER=$TOP/bin/dnssec/dnssec-signkey
|
2000-05-18 18:49:29 -04:00
|
|
|
KEYSETTOOL=$TOP/bin/dnssec/dnssec-makekeyset
|
2001-01-11 16:12:10 -05:00
|
|
|
|
|
|
|
|
# The "stress" test is not run by default since it creates enough
|
|
|
|
|
# load on the machine to make it unusable to other users.
|
2003-03-05 23:38:29 -05:00
|
|
|
#
|
2003-05-19 01:46:25 -04:00
|
|
|
# dnssec is missing from SUBDIRS as RFC 2535 support is disabled
|
2003-10-17 03:06:16 -04:00
|
|
|
# v6synth in no longer supported.
|
2003-05-19 01:46:25 -04:00
|
|
|
SUBDIRS="cacheclean forward glue ixfr limits lwresd \
|
2001-08-01 15:01:02 -04:00
|
|
|
masterfile notify nsupdate resolver sortlist stub tkey \
|
2003-10-17 03:06:16 -04:00
|
|
|
unknown upforwd views xfer xferquota"
|
2000-05-15 18:53:15 -04:00
|
|
|
|
2000-06-13 13:34:28 -04:00
|
|
|
# PERL will be an empty string if no perl interpreter was found.
|
|
|
|
|
PERL=@PERL@
|
|
|
|
|
|
2000-07-05 22:10:46 -04:00
|
|
|
export NAMED LWRESD DIG NSUPDATE KEYGEN SIGNER KEYSIGNER KEYSETTOOL PERL \
|
2000-07-10 13:01:15 -04:00
|
|
|
SUBDIRS RNDC
|