+4899. [test] Convert most of the remaining system tests to be able
+ to run in parallel, continuing the work from change
+ #4895. To take advantage of this, use "make -jN check",
+ where N is the number of processors to use. [GL #91]
+
4896. [test] cacheclean system test was not robust. [GL #82]
4895. [test] Allow some system tests to run in parallel.
-# Copyright (C) 2004-2009, 2011-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004-2009, 2011-2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 1998-2002 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
-# Copyright (C) 2004, 2007, 2008, 2010-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2008, 2010-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
# Running the scripts below is bypassed when a separate build directory is
# used.
-# Define the tests that can be run in parallel. This should be identical to
-# the definition of PARALLELDIRS in conf.sh.
-
-PARALLEL = allow_query rpzrecurse
-
-# Produce intermediate makefile that assigns unique port numbers to each
-# parallel test. The start port number of 5,000 is arbitrary - it must just
-# be greater than the highest privileged port, 1024.
-#
-# Test names need to be sanitized because Solaris make does not like
-# underscores in target names and requires explicit differentiation
-# between a target name and a directory name (.PHONY is not supported).
-
-parallel.mk:
- @PARALLEL_SANITIZED=`echo $(PARALLEL) | sed "s|\([^ ][^ ]*\)|test-\1|g;" | tr _ -` ; \
- echo ".PHONY: $$PARALLEL_SANITIZED" > $@ ; \
- echo "" >> $@ ; \
- echo "check: $$PARALLEL_SANITIZED" >> $@ ; \
- port=$${STARTPORT:-5000} ; \
- for directory in $(PARALLEL) ; do \
- echo "" >> $@ ; \
- echo "test-`echo $$directory | tr _ -`:" >> $@ ; \
- echo " @$(SHELL) ./run.sh $$NOCLEAN -r -p $$port $$directory 2>&1 | tee $$directory/test.output" >> $@ ; \
- port=`expr $$port + 100` ; \
- done
-
-# Targets to run the tests.
-
-test: parallel.mk subdirs
- @$(MAKE) -f parallel.mk check
- @$(SHELL) ./runsequential.sh $$NOCLEAN -r
- @$(SHELL) ./testsummary.sh
-
# Define the tests that can be run in parallel. This should be identical to
# the definition of PARALLELDIRS in conf.sh. Note: long-running tests
# such as allow_query and serve-stale are scheduled first to get more
# benefit from parallelism.
-PARALLEL = acl additional addzone allow_query autosign \
+PARALLEL = allow_query rpzrecurse acl additional addzone autosign \
builtin cacheclean chain checkconf checknames \
checkzone @CHECKDS@ @COVERAGE@ cookie database \
digdelv dlv dlz dlzexternal dns64 dnssec dscp dsdigest \
formerr forward geoip glue inline integrity ixfr \
legacy limits logfileconfig masterfile masterformat \
metadata notify nslookup nsupdate pending reclimit \
- redirect resolver rndc rpz rpzrecurse rrchecker rrl \
+ redirect resolver rndc rpz rrchecker rrl \
rrsetorder rsabigexponent runtime smartsign sortlist \
spf staticstub statistics statschannel stub \
tcp tsig tsiggss unknown upforwd verify views wildcard \
-Copyright (C) 2004, 2010, 2011, 2013, 2015 Internet Systems Consortium, Inc. ("ISC")
+Copyright (C) 2004, 2010, 2011, 2013, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
Copyright (C) 2000, 2001 Internet Software Consortium.
See COPYRIGHT in the source root or http://isc.org/copyright.html for terms.
-
Introduction
===
This directory holds a simple test environment for running bind9 system tests
#!/bin/sh
#
-# Copyright (C) 2008, 2012, 2014, 2015, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2008, 2012, 2014, 2015, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2008, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
};
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
key two {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
zone "." {
zone "tsigzone" {
type master;
file "tsigzone.db";
- allow-transfer { !key one; any; };
+ allow-transfer { !key one; any; };
};
/*
- * Copyright (C) 2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2008, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2008, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
};
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
key two {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
key three {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
acl reject {
- !key one; !key two; any;
+ !key one; !key two; any;
};
acl accept {
- 10.53.0.1; 10.53.0.2;
+ 10.53.0.1; 10.53.0.2;
};
zone "." {
zone "tsigzone" {
type master;
file "tsigzone.db";
- allow-transfer { !reject; accept; };
+ allow-transfer { !reject; accept; };
};
/*
- * Copyright (C) 2008 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2008, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
};
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
key two {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
acl rejectkeys {
- !key one; !key two; any;
+ !key one; !key two; any;
};
acl rejectaddrs {
- !10.53.0.1; !10.53.0.2; any;
+ !10.53.0.1; !10.53.0.2; any;
};
acl check1 { !key one; 10.53.0.1; };
zone "tsigzone" {
type master;
file "tsigzone.db";
- allow-transfer { !rejectkeys; !rejectaddrs; !check1; !check2; any; };
+ allow-transfer { !rejectkeys; !rejectaddrs; !check1; !check2; any; };
};
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2008, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2008, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2008, 2012-2014, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2008, 2012-2014, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2013, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2013, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2013, 2015, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2013, 2015, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- allow-query { any; };
- recursion no;
+ allow-query { any; };
+ recursion no;
allow-new-zones yes;
};
/*
- * Copyright (C) 2010, 2011, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2011, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012-2014, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012-2014, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010-2013, 2015-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2013, 2015-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named01.conf,v 1.2 2010/11/16 01:37:37 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named02.conf,v 1.2 2010/11/16 01:37:37 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { any; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named03.conf,v 1.2 2010/11/16 01:37:37 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { none; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named04.conf,v 1.2 2010/11/16 01:37:37 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { 10.53.0.2; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named05.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { 10.53.0.1; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named06.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query {! 10.53.0.2; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named07.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
acl accept { 10.53.0.2; };
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { accept; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named08.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
acl accept { 10.53.0.1; };
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { accept; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named09.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
acl accept { 10.53.0.2; };
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query {! accept; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named10.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-
-controls { /* empty */ };
-
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { key one; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named11.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-
-controls { /* empty */ };
-
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
key two {
- algorithm hmac-md5;
- secret "1234efgh8765";
+ algorithm hmac-md5;
+ secret "1234efgh8765";
};
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { key one; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named12.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query {! key one; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named21.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
};
zone "normal.example" {
- type master;
+ type master;
file "normal.db";
};
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named22.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named23.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named24.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named25.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named26.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named27.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
acl accept { 10.53.0.2; };
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named28.conf,v 1.2 2010/11/16 01:37:38 sar Exp $ */
-
-controls { /* empty */ };
-
acl accept { 10.53.0.1; };
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named29.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-controls { /* empty */ };
-
acl accept { 10.53.0.2; };
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named30.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-
-controls { /* empty */ };
-
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named31.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-
-controls { /* empty */ };
-
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
key two {
- algorithm hmac-md5;
- secret "1234efgh8765";
+ algorithm hmac-md5;
+ secret "1234efgh8765";
};
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { key one; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named32.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-controls { /* empty */ };
-
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named33.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { none; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named34.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { any; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named40.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
+acl accept { 10.53.0.2; };
-controls { /* empty */ };
-
-acl accept { 10.53.0.2; };
-
-acl badaccept { 10.53.0.1; };
+acl badaccept { 10.53.0.1; };
key one {
- algorithm hmac-md5;
- secret "1234abcd8765";
+ algorithm hmac-md5;
+ secret "1234abcd8765";
};
key two {
- algorithm hmac-md5;
- secret "1234efgh8765";
+ algorithm hmac-md5;
+ secret "1234efgh8765";
};
options {
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named53.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { none; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named54.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
allow-query { any; };
};
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named55.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: named56.conf,v 1.2 2010/11/16 01:37:39 sar Exp $ */
-
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
- recursion no;
+ recursion no;
};
include "controls.conf";
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* PERFORMANCE OF THIS SOFTWARE.
*/
-controls { /* empty */ };
-
options {
port @PORT@;
pid-file "named.pid";
#!/bin/sh -e
#
-# Copyright (C) 2010, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/perl
#
-# Copyright (C) 2011, 2012, 2014, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2014, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2009-2015, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009-2015, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009-2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009-2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009-2013, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009-2013, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh -e
#
-# Copyright (C) 2009, 2010, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009, 2010, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2009-2014, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009-2014, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#
# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
-# Copyright (C) 2011, 2012, 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2014-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2005, 2007, 2011, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2011, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2005, 2007, 2011, 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2011, 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/usr/bin/env perl
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
See COPYRIGHT in the source root or http://isc.org/copyright.html for terms.
This Source Code Form is subject to the terms of the Mozilla Public
############################################################################
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011, 2012, 2014-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2014-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2011, 2012, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
recursion yes;
acache-enable yes;
check-names response warn;
- notify yes;
+ notify yes;
};
zone "." {
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
recursion yes;
acache-enable yes;
check-names response fail;
- notify yes;
+ notify yes;
};
zone "." {
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2004, 2007, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2011-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2000, 2001, 2004, 2007, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2000, 2001 Internet Software Consortium.
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
-/* $Id: controls.conf,v 1.6 2007/06/19 23:47:01 tbox Exp $ */
-
key rndc_key {
secret "1234abcd8765";
algorithm hmac-sha256;
#!/bin/sh
#
-# Copyright (C) 2004-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004-2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000-2003 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2013, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
-# Copyright (C) 2015-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2010-2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009-2012, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
-; Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
;
; Permission to use, copy, modify, and/or distribute this software for any
; purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009, 2011, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2010-2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010, 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2010-2013, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2013, 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
dlz "example one" {
/*
- * Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010-2012, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2012, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
dnssec-validation yes;
dns64 2001:bbbb::/96 {
- clients { any; };
- mapped { !rfc1918; any; };
- exclude { 2001:eeee::/32; 64:FF9B::/96; ::ffff:0000:0000/96; };
- suffix ::;
+ clients { any; };
+ mapped { !rfc1918; any; };
+ exclude { 2001:eeee::/32; 64:FF9B::/96; ::ffff:0000:0000/96; };
+ suffix ::;
recursive-only yes;
- };
+ };
};
zone "." {
/*
- * Copyright (C) 2010, 2011, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2011, 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh -e
#
-# Copyright (C) 2010, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007-2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000-2002 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/usr/bin/perl
#
-# Copyright (C) 2004, 2007, 2010, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2010, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2002 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2006, 2007, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2006-2008, 2010, 2011, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006-2008, 2010, 2011, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000-2002 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2006-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000-2002 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2004, 2006, 2007, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2006, 2007, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2006, 2007, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2006, 2008, 2010, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006, 2008, 2010, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2006, 2007, 2009, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2006, 2007, 2009, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000-2002 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh -e
#
-# Copyright (C) 2004, 2007, 2009, 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009, 2011-2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004-2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2000-2002 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2013, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
-# Copyright (C) 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh -e
#
-# Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh -e
#
-# Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/perl -w
#
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2015-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2015-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2013, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2004, 2007, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
-# Copyright (C) 2004, 2007, 2011-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2013, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2013-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001, 2003 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011-2014, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011-2014, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011-2013, 2015, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011-2013, 2015, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2011-2014, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2014, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2011, 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011-2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2011, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
* Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
controls {
- inet 127.0.0.1 port @CONTROLPORT@
- allow { 127.0.0.1/32; ::1/128; }
- keys { "rndc-key"; };
+ inet 127.0.0.1 port @CONTROLPORT@
+ allow { 127.0.0.1/32; ::1/128; }
+ keys { "rndc-key"; };
};
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011-2013, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2013, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2004, 2007, 2010, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2010, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2010, 2012, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2010, 2012, 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2005, 2007, 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2005, 2007, 2011-2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2005, 2007, 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2005, 2007, 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2005, 2007, 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2005, 2007, 2011, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
};
zone "transfer1" {
- type slave;
- masters { 10.53.0.1; };
- file "transfer.db.raw";
+ type slave;
+ masters { 10.53.0.1; };
+ file "transfer.db.raw";
};
zone "transfer2" {
- type slave;
- masters { 10.53.0.1; };
- masterfile-format text;
- file "transfer.db.txt";
+ type slave;
+ masters { 10.53.0.1; };
+ masterfile-format text;
+ file "transfer.db.txt";
};
zone "transfer3" {
- type slave;
- masters { 10.53.0.1; };
- file "formerly-text.db";
+ type slave;
+ masters { 10.53.0.1; };
+ file "formerly-text.db";
};
zone "large" {
- type slave;
- masters { 10.53.0.1; };
- masterfile-format raw;
- file "large.bk";
+ type slave;
+ masters { 10.53.0.1; };
+ masterfile-format raw;
+ file "large.bk";
};
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2005-2007, 2011-2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2005-2007, 2011-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2005, 2007, 2011-2014, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2005, 2007, 2011-2014, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh -e
#
-# Copyright (C) 2009, 2011, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009, 2011, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2009, 2011-2014, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009, 2011-2014, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2011, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
-# Copyright (C) 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/perl
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2009-2012, 2014-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009-2012, 2014-2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2005, 2007, 2009, 2011-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009, 2011-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2011, 2013, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011, 2013, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2010, 2011, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2011, 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2009-2012, 2014, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009-2012, 2014, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/usr/bin/perl
#
-# Copyright (C) 2004, 2007, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2009, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009, 2010, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009, 2010, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
};
zone "." {
- type hint;
- file "../../common/root.hint";
+ type hint;
+ file "../../common/root.hint";
};
#!/bin/sh -e
#
-# Copyright (C) 2009, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2009, 2010, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009, 2010, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/env perl
#
-# Copyright (C) 2014-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/env perl
#
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2014-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh -e
#
-# Copyright (C) 2011-2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/perl
#
-# Copyright (C) 2004, 2007, 2009, 2010, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009, 2010, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/usr/bin/perl
#
-# Copyright (C) 2004, 2007, 2009, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/usr/bin/perl
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2008-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2008-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2004, 2007, 2009, 2013-2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2009, 2013-2015, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2010-2013, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010-2013, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010, 2011, 2013-2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2011, 2013-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010, 2012-2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2012-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010, 2011, 2013, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2011, 2013, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh -e
#
-# Copyright (C) 2010-2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2009-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009-2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2011-2015, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2015, 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011-2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2011-2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
# Clean up after rpz tests.
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
options {
-; Copyright (C) 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
$TTL 120
. SOA ns. hostmaster.ns. ( 1 3600 1200 604800 60 )
-; Copyright (C) 2012, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
; RPZ rewrite responses from this signed zone
-; Copyright (C) 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
; master for slave RPZ zone
-; Copyright (C) 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
; master for slave RPZ zone
-; Copyright (C) 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
; master for slave RPZ zone
-; Copyright (C) 2011, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
. 120 NS ns.
ns. 120 A 10.53.0.1
/*
- * Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
options {
-; Copyright (C) 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
; RPZ rewrite responses from this zone
-; Copyright (C) 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011-2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
; RPZ test
; This basic file is copied to several zone files before being used.
-; Copyright (C) 2011, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
. 120 NS ns.
ns. 120 A 10.53.0.1
/*
- * Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
/*
-; Copyright (C) 2011, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
. 120 NS ns.
ns. 120 A 10.53.0.1
/*
- * Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
options {
-; Copyright (C) 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
; RPZ rewrite responses from this zone
-; Copyright (C) 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
$TTL 120
@ SOA . hostmaster.ns.example.tld5. ( 1 3600 1200 604800 60 )
-; Copyright (C) 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
. 120 NS ns.
ns. 120 A 10.53.0.1
/*
- * Copyright (C) 2012-2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
/*
-; Copyright (C) 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
-; Copyright (C) 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
. 120 NS ns.
ns. 120 A 10.53.0.1
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
options {
-; Copyright (C) 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
. 120 NS ns.
ns. 120 A 10.53.0.1
/*
- * Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
*
- * 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 http://mozilla.org/MPL/2.0/.
+ * Permission to use, copy, modify, and/or 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.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+ * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
options {
#!/bin/sh
#
-# Copyright (C) 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#! /bin/sh
#
-# Copyright (C) 2012, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
for QDIR in `echo "$PATH" | tr : ' '` ../../../../contrib/queryperf; do
QPERF=$QDIR/queryperf
#! /bin/sh
#
-# Copyright (C) 2011-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
set -e
-; Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
-; Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
-; Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
-; Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
-; Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
-; Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2011-2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
-; Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+; Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
;
-; 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 http://mozilla.org/MPL/2.0/.
+; Permission to use, copy, modify, and/or 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.
+;
+; THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+; REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+; AND FITNESS. IN NO EVENT SHALL ISC 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.
-# Copyright (C) 2011-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
# test response policy zones (RPZ)
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2013-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2012, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2012, 2013, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2013, 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2006-2008, 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2006-2008, 2011, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2006, 2007, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006, 2007, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2006, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2006, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2006-2008, 2011, 2012, 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2006-2008, 2011, 2012, 2014-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2010, 2012, 2014-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2010, 2012, 2014-2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
echopass "R:$systest:PASS"
if $clean
then
- if test -f $test/clean.sh
- then
- ( cd $test && $SHELL clean.sh "$@" )
- fi
+ $SHELL clean.sh $runall $systest "$@"
if test -d ../../../.git
then
git status -su --ignored $systest | \
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2010-2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2010-2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2000, 2001, 2004, 2007, 2010-2012, 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
# Run system tests that must be run sequentially
#
#!/bin/sh
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh -e
#
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2017, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
+++ /dev/null
-/ans2/ans.pid
-/ans2/ans.pl
-/ns1/named.conf
-/ns3/named.conf
-/ns3/root.bk
#!/bin/sh
#
-# Copyright (C) 2010-2012, 2014, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2012, 2014, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2009, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
-# Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2013, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/perl -w
#
-# Copyright (C) 2004-2008, 2010-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004-2008, 2010-2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010, 2013, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2013, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010-2013, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2013, 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/perl -w
#
-# Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2015, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/perl -w
#
-# Copyright (C) 2004-2007, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004-2007, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
-# $Id: stop.pl,v 1.12 2007/06/19 23:47:00 tbox Exp $
-
# Framework for stopping test servers
# Based on the type of server specified, signal the server to stop, wait
# briefly for it to die, and then kill it if it is still alive.
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
#!/bin/sh
#
-# Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2000, 2001, 2004, 2007, 2010-2012, 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
#
-# 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 http://mozilla.org/MPL/2.0/.
+# Permission to use, copy, modify, and/or 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS. IN NO EVENT SHALL ISC 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.
# Creates the system tests output file from the various test.output files. It
# then searches that file and prints the number of tests passed, failed, not
#!/bin/sh
#
-# Copyright (C) 2005-2007, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2005-2007, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2005-2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2005-2007, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2005-2007, 2011, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2005-2007, 2011, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/usr/bin/env perl
#
-# Copyright (C) 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2011, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2011, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2010, 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2010, 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010-2012, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2012, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010-2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010-2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2010, 2011, 2014, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2010, 2011, 2014, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2013, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2013, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/usr/bin/perl
#
-# Copyright (C) 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2011, 2014 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011, 2012, 2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
-# Copyright (C) 2012, 2013, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2013, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2012-2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2005, 2007, 2012-2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2005, 2007, 2012-2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2013-2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013-2015, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2012-2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012-2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012, 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2011, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2005, 2007, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2011, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011, 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2011, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2011, 2012, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011, 2012, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2011-2014, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2011-2014, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2001, 2002 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2005, 2007, 2011-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2005, 2007, 2011-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
#!/usr/bin/perl -w
#
-# Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2013, 2015 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2015, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2014, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2013, 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2013, 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2012, 2014-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2012, 2014-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012-2015 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012-2015, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
/*
- * Copyright (C) 2012, 2013 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2012, 2013, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2012-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2012-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
#!/bin/sh
#
-# Copyright (C) 2004, 2007, 2009, 2012-2016 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2009, 2012-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
break
fi
break
- fi
- done
+ done
+ fi
elif test "$use_dlz_mysql" != "no"
then
d=$use_dlz_mysql
break
fi
break
- fi
- done
+ done
+ fi
elif test "$use_dlz_mysql" != "no"
then
d=$use_dlz_mysql
/*
- * Copyright (C) 2004-2017 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2018 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id$ */
-
/*! \file */
/***
-# Copyright (C) 2011-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2016, 2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2016-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
-# Copyright (C) 2011-2017 Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2011-2018 Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
./HISTORY X 2010,2013,2017
./HISTORY.md MKD 2017
./Kyuafile X 2017
-./Makefile.in MAKE 1998,1999,2000,2001,2002,2004,2005,2006,2007,2008,2009,2011,2012,2013,2014,2015,2016,2017
+./Makefile.in MAKE 1998,1999,2000,2001,2002,2004,2005,2006,2007,2008,2009,2011,2012,2013,2014,2015,2016,2017,2018
./OPTIONS X 2017
./OPTIONS.md MKD 2017
./README X 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
./bin/tests/startperf/setup.sh SH 2011,2012
./bin/tests/startperf/smallzone.db ZONE 2011
./bin/tests/sym_test.c C 1998,1999,2000,2001,2004,2005,2007,2015
-./bin/tests/system/.gitignore X 2012,2016
-./bin/tests/system/Makefile.in MAKE 2000,2001,2004,2007,2008,2010,2011,2012,2013,2014,2015,2016
-./bin/tests/system/README TXT.BRIEF 2000,2001,2004,2010,2011,2013,2015
-./bin/tests/system/acl/clean.sh SH 2008,2012,2014,2015,2017
-./bin/tests/system/acl/ns2/named1.conf CONF-C 2008
-./bin/tests/system/acl/ns2/named2.conf CONF-C 2008
-./bin/tests/system/acl/ns2/named3.conf CONF-C 2008
-./bin/tests/system/acl/ns2/named4.conf CONF-C 2008
-./bin/tests/system/acl/ns2/named5.conf CONF-C 2013
+./bin/tests/system/.gitignore X 2012,2016,2018
+./bin/tests/system/Makefile.in MAKE 2000,2001,2004,2007,2008,2010,2011,2012,2013,2014,2015,2016,2018
+./bin/tests/system/README TXT.BRIEF 2000,2001,2004,2010,2011,2013,2015,2018
+./bin/tests/system/acl/clean.sh SH 2008,2012,2014,2015,2017,2018
+./bin/tests/system/acl/ns2/named1.conf.in CONF-C 2008,2018
+./bin/tests/system/acl/ns2/named2.conf.in CONF-C 2008,2018
+./bin/tests/system/acl/ns2/named3.conf.in CONF-C 2008,2018
+./bin/tests/system/acl/ns2/named4.conf.in CONF-C 2008,2018
+./bin/tests/system/acl/ns2/named5.conf.in CONF-C 2013,2018
./bin/tests/system/acl/ns3/example.db ZONE 2017
-./bin/tests/system/acl/ns3/named.conf CONF-C 2017
+./bin/tests/system/acl/ns3/named.conf.in CONF-C 2017,2018
./bin/tests/system/acl/ns4/example.db ZONE 2017
./bin/tests/system/acl/ns4/existing.db ZONE 2017
-./bin/tests/system/acl/ns4/named.conf CONF-C 2017
-./bin/tests/system/acl/setup.sh SH 2008,2012,2014
-./bin/tests/system/acl/tests.sh SH 2008,2012,2013,2014,2016,2017
-./bin/tests/system/additional/clean.sh SH 2013,2017
+./bin/tests/system/acl/ns4/named.conf.in CONF-C 2017,2018
+./bin/tests/system/acl/setup.sh SH 2008,2012,2014,2018
+./bin/tests/system/acl/tests.sh SH 2008,2012,2013,2014,2016,2017,2018
+./bin/tests/system/additional/clean.sh SH 2013,2017,2018
./bin/tests/system/additional/ns1/named.args X 2013
-./bin/tests/system/additional/ns1/named1.conf CONF-C 2013
-./bin/tests/system/additional/ns1/named2.conf CONF-C 2013
+./bin/tests/system/additional/ns1/named1.conf.in CONF-C 2013,2018
+./bin/tests/system/additional/ns1/named2.conf.in CONF-C 2013,2018
./bin/tests/system/additional/ns1/naptr.db ZONE 2013
./bin/tests/system/additional/ns1/naptr2.db ZONE 2013
./bin/tests/system/additional/ns1/nid.db ZONE 2013
./bin/tests/system/additional/ns1/rt.db ZONE 2013
./bin/tests/system/additional/ns1/rt2.db ZONE 2013
-./bin/tests/system/additional/ns3/named.conf CONF-C 2017
+./bin/tests/system/additional/ns3/named.conf.in CONF-C 2017,2018
./bin/tests/system/additional/ns3/root.hint ZONE 2017
-./bin/tests/system/additional/setup.sh SH 2013
-./bin/tests/system/additional/tests.sh SH 2013,2016,2017
-./bin/tests/system/addzone/clean.sh SH 2010,2012,2013,2015,2017
+./bin/tests/system/additional/setup.sh SH 2013,2018
+./bin/tests/system/additional/tests.sh SH 2013,2016,2017,2018
+./bin/tests/system/addzone/clean.sh SH 2010,2012,2013,2015,2017,2018
./bin/tests/system/addzone/ns1/inlineslave.db ZONE 2013
-./bin/tests/system/addzone/ns1/named.conf CONF-C 2013
+./bin/tests/system/addzone/ns1/named.conf.in CONF-C 2013,2018
./bin/tests/system/addzone/ns2/added.db ZONE 2010,2013
./bin/tests/system/addzone/ns2/default.nzf.in X 2010
./bin/tests/system/addzone/ns2/hints.db ZONE 2016
./bin/tests/system/addzone/ns2/inline.db ZONE 2013
-./bin/tests/system/addzone/ns2/named1.conf CONF-C 2010
-./bin/tests/system/addzone/ns2/named2.conf CONF-C 2010,2011,2016
+./bin/tests/system/addzone/ns2/named1.conf.in CONF-C 2010,2018
+./bin/tests/system/addzone/ns2/named2.conf.in CONF-C 2010,2011,2016,2018
./bin/tests/system/addzone/ns2/normal.db ZONE 2010
./bin/tests/system/addzone/ns2/previous.db ZONE 2010
./bin/tests/system/addzone/ns2/redirect.db ZONE 2016
-./bin/tests/system/addzone/ns3/named1.conf CONF-C 2017
-./bin/tests/system/addzone/ns3/named2.conf CONF-C 2017
-./bin/tests/system/addzone/setup.sh SH 2010,2012,2013,2014,2017
-./bin/tests/system/addzone/tests.sh SH 2010,2011,2012,2013,2015,2016,2017
-./bin/tests/system/allow_query/clean.sh SH 2010,2012,2015
+./bin/tests/system/addzone/ns3/named1.conf.in CONF-C 2017,2018
+./bin/tests/system/addzone/ns3/named2.conf.in CONF-C 2017,2018
+./bin/tests/system/addzone/setup.sh SH 2010,2012,2013,2014,2017,2018
+./bin/tests/system/addzone/tests.sh SH 2010,2011,2012,2013,2015,2016,2017,2018
+./bin/tests/system/allow_query/.gitignore X 2018
+./bin/tests/system/allow_query/clean.sh SH 2010,2012,2015,2018
./bin/tests/system/allow_query/ns2/aclallow.db ZONE 2010
./bin/tests/system/allow_query/ns2/acldisallow.db ZONE 2010
./bin/tests/system/allow_query/ns2/aclnotallow.db ZONE 2010
./bin/tests/system/allow_query/ns2/any.db ZONE 2010
./bin/tests/system/allow_query/ns2/keyallow.db ZONE 2010
./bin/tests/system/allow_query/ns2/keydisallow.db ZONE 2010
-./bin/tests/system/allow_query/ns2/named01.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named02.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named03.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named04.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named05.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named06.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named07.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named08.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named09.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named10.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named11.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named12.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named21.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named22.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named23.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named24.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named25.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named26.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named27.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named28.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named29.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named30.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named31.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named32.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named33.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named34.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named40.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named53.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named54.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named55.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named56.conf CONF-C 2010
-./bin/tests/system/allow_query/ns2/named57.conf CONF-C 2013
+./bin/tests/system/allow_query/ns2/named01.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named02.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named03.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named04.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named05.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named06.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named07.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named08.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named09.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named10.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named11.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named12.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named21.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named22.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named23.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named24.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named25.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named26.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named27.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named28.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named29.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named30.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named31.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named32.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named33.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named34.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named40.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named53.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named54.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named55.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named56.conf.in CONF-C 2010,2018
+./bin/tests/system/allow_query/ns2/named57.conf.in CONF-C 2013,2018
./bin/tests/system/allow_query/ns2/none.db ZONE 2010
./bin/tests/system/allow_query/ns2/normal.db ZONE 2010
./bin/tests/system/allow_query/ns2/previous.db ZONE 2010
-./bin/tests/system/allow_query/setup.sh SH 2010,2012
-./bin/tests/system/allow_query/tests.sh SH 2010,2012,2013,2016
-./bin/tests/system/ans.pl PERL 2011,2012,2014,2017
-./bin/tests/system/autosign/clean.sh SH 2009,2010,2011,2012,2013,2014,2015,2017
+./bin/tests/system/allow_query/setup.sh SH 2010,2012,2018
+./bin/tests/system/allow_query/tests.sh SH 2010,2012,2013,2016,2018
+./bin/tests/system/ans.pl PERL 2011,2012,2014,2017,2018
+./bin/tests/system/autosign/clean.sh SH 2009,2010,2011,2012,2013,2014,2015,2017,2018
./bin/tests/system/autosign/ns1/keygen.sh SH 2009,2010,2011,2012,2014,2016
-./bin/tests/system/autosign/ns1/named.conf CONF-C 2009,2013
+./bin/tests/system/autosign/ns1/named.conf.in CONF-C 2009,2013,2018
./bin/tests/system/autosign/ns1/root.db.in ZONE 2009,2010
./bin/tests/system/autosign/ns2/Xbar.+005+30676.key X 2010
./bin/tests/system/autosign/ns2/Xbar.+005+30676.private X 2010
./bin/tests/system/autosign/ns2/example.db.in ZONE 2009,2010
./bin/tests/system/autosign/ns2/insecure.secure.example.db ZONE 2009
./bin/tests/system/autosign/ns2/keygen.sh SH 2009,2010,2011,2012,2014,2016
-./bin/tests/system/autosign/ns2/named.conf CONF-C 2009,2010,2011,2013
+./bin/tests/system/autosign/ns2/named.conf.in CONF-C 2009,2010,2011,2013,2018
./bin/tests/system/autosign/ns2/private.secure.example.db.in ZONE 2009
./bin/tests/system/autosign/ns3/.gitignore X 2012
./bin/tests/system/autosign/ns3/autonsec3.example.db.in ZONE 2011
./bin/tests/system/autosign/ns3/inaczsk3.example.db.in ZONE 2017
./bin/tests/system/autosign/ns3/insecure.example.db ZONE 2009
./bin/tests/system/autosign/ns3/keygen.sh SH 2009,2010,2011,2012,2014,2016,2017
-./bin/tests/system/autosign/ns3/named.conf CONF-C 2009,2010,2011,2012,2013,2017
+./bin/tests/system/autosign/ns3/named.conf.in CONF-C 2009,2010,2011,2012,2013,2017,2018
./bin/tests/system/autosign/ns3/nozsk.example.db.in ZONE 2011
./bin/tests/system/autosign/ns3/nsec.example.db.in ZONE 2010
./bin/tests/system/autosign/ns3/nsec3-to-nsec.example.db.in ZONE 2010
./bin/tests/system/autosign/ns3/ttl2.example.db.in ZONE 2011
./bin/tests/system/autosign/ns3/ttl3.example.db.in ZONE 2011
./bin/tests/system/autosign/ns3/ttl4.example.db.in ZONE 2011
-./bin/tests/system/autosign/ns4/named.conf CONF-C 2009
-./bin/tests/system/autosign/ns5/named.conf CONF-C 2009
+./bin/tests/system/autosign/ns4/named.conf.in CONF-C 2009,2018
+./bin/tests/system/autosign/ns5/named.conf.in CONF-C 2009,2018
./bin/tests/system/autosign/prereq.sh SH 2009,2010,2012,2014
-./bin/tests/system/autosign/setup.sh SH 2009,2010,2012,2014
-./bin/tests/system/autosign/tests.sh SH 2009,2010,2011,2012,2013,2014,2016,2017
-./bin/tests/system/builtin/clean.sh SH 2014
-./bin/tests/system/builtin/ns1/named.conf CONF-C 2011
-./bin/tests/system/builtin/ns2/named.conf CONF-C 2014
-./bin/tests/system/builtin/ns3/named.conf CONF-C 2014
-./bin/tests/system/builtin/tests.sh SH 2011,2012,2014,2015,2016
-./bin/tests/system/cacheclean/clean.sh SH 2001,2004,2007,2011,2012,2014,2015
+./bin/tests/system/autosign/setup.sh SH 2009,2010,2012,2014,2018
+./bin/tests/system/autosign/tests.sh SH 2009,2010,2011,2012,2013,2014,2016,2017,2018
+./bin/tests/system/builtin/clean.sh SH 2014,2018
+./bin/tests/system/builtin/ns1/named.conf.in CONF-C 2011,2018
+./bin/tests/system/builtin/ns2/named.conf.in CONF-C 2014,2018
+./bin/tests/system/builtin/ns3/named.conf.in CONF-C 2014,2018
+./bin/tests/system/builtin/setup.sh SH 2018
+./bin/tests/system/builtin/tests.sh SH 2011,2012,2014,2015,2016,2018
+./bin/tests/system/cacheclean/clean.sh SH 2001,2004,2007,2011,2012,2014,2015,2018
./bin/tests/system/cacheclean/dig.batch X 2001
./bin/tests/system/cacheclean/knowngood.dig.out X 2001
./bin/tests/system/cacheclean/ns1/example.db ZONE 2001,2004,2007,2012
./bin/tests/system/cacheclean/ns1/expire-test.db ZONE 2014
./bin/tests/system/cacheclean/ns1/flushtest.db ZONE 2011
-./bin/tests/system/cacheclean/ns1/named.conf CONF-C 2001,2004,2005,2007,2011,2014
-./bin/tests/system/cacheclean/ns2/named.conf CONF-C 2001,2004,2005,2007,2011,2013,2014
-./bin/tests/system/cacheclean/tests.sh SH 2001,2004,2007,2011,2012,2013,2014,2016
-./bin/tests/system/case/clean.sh SH 2013,2014,2015
-./bin/tests/system/case/ns1/example.db ZONE 2013
-./bin/tests/system/case/ns1/named.conf CONF-C 2013
-./bin/tests/system/case/ns2/named.conf CONF-C 2014
-./bin/tests/system/case/tests.sh SH 2013,2014,2016
+./bin/tests/system/cacheclean/ns1/named.conf.in CONF-C 2001,2004,2005,2007,2011,2014,2018
+./bin/tests/system/cacheclean/ns2/named.conf.in CONF-C 2001,2004,2005,2007,2011,2013,2014,2018
+./bin/tests/system/cacheclean/setup.sh SH 2018
+./bin/tests/system/cacheclean/tests.sh SH 2001,2004,2007,2011,2012,2013,2014,2016,2018
./bin/tests/system/chain/README TXT.BRIEF 2017
-./bin/tests/system/chain/ans3/ans.pl PERL 2017
+./bin/tests/system/chain/ans3/ans.pl PERL 2017,2018
./bin/tests/system/chain/ans4/.gitignore X 2017
-./bin/tests/system/chain/ans4/README.anspy TXT.BRIEF 2017
-./bin/tests/system/chain/ans4/ans.py PYTHON 2017
-./bin/tests/system/chain/clean.sh SH 2011,2012,2014,2015,2016,2017
-./bin/tests/system/chain/ns1/named.conf CONF-C 2011,2016,2017
+./bin/tests/system/chain/ans4/README.anspy TXT.BRIEF 2017,2018
+./bin/tests/system/chain/ans4/ans.py PYTHON 2017,2018
+./bin/tests/system/chain/clean.sh SH 2011,2012,2014,2015,2016,2017,2018
+./bin/tests/system/chain/ns1/named.conf.in CONF-C 2011,2016,2017,2018
./bin/tests/system/chain/ns1/root.db ZONE 2011,2016,2017
./bin/tests/system/chain/ns2/example.db ZONE 2011,2016,2017
./bin/tests/system/chain/ns2/generic.db ZONE 2017
-./bin/tests/system/chain/ns2/named.conf CONF-C 2011,2016,2017
+./bin/tests/system/chain/ns2/named.conf.in CONF-C 2011,2016,2017,2018
./bin/tests/system/chain/ns2/sign.sh SH 2017
./bin/tests/system/chain/ns2/sub.db ZONE 2017
-./bin/tests/system/chain/ns5/named.conf CONF-C 2017
+./bin/tests/system/chain/ns5/named.conf.in CONF-C 2017,2018
./bin/tests/system/chain/ns5/sub.db ZONE 2017
-./bin/tests/system/chain/ns7/named.conf CONF-C 2017
+./bin/tests/system/chain/ns7/named.conf.in CONF-C 2017,2018
./bin/tests/system/chain/ns7/root.hint ZONE 2017
-./bin/tests/system/chain/prereq.sh SH 2017
-./bin/tests/system/chain/setup.sh SH 2017
-./bin/tests/system/chain/tests.sh SH 2011,2012,2016,2017
+./bin/tests/system/chain/prereq.sh SH 2017,2018
+./bin/tests/system/chain/setup.sh SH 2017,2018
+./bin/tests/system/chain/tests.sh SH 2011,2012,2016,2017,2018
./bin/tests/system/checkconf/altdb.conf CONF-C 2014
./bin/tests/system/checkconf/altdlz.conf CONF-C 2014
./bin/tests/system/checkconf/bad-also-notify.conf CONF-C 2012,2013
./bin/tests/system/checkds/ok.example.dnskey.db X 2012
./bin/tests/system/checkds/ok.example.ds.db X 2012
./bin/tests/system/checkds/setup.sh SH 2012,2013,2014
-./bin/tests/system/checkds/tests.sh SH 2012,2013,2014,2016
+./bin/tests/system/checkds/tests.sh SH 2012,2013,2014,2016,2018
./bin/tests/system/checkds/wrong.example.dlv.example.dlv.db X 2012
./bin/tests/system/checkds/wrong.example.dnskey.db X 2012
./bin/tests/system/checkds/wrong.example.ds.db X 2012
-./bin/tests/system/checknames/clean.sh SH 2004,2007,2012,2014,2015
+./bin/tests/system/checknames/clean.sh SH 2004,2007,2012,2014,2015,2018
./bin/tests/system/checknames/ns1/fail.example.db.in ZONE 2004,2007
./bin/tests/system/checknames/ns1/fail.update.db.in ZONE 2004,2007
./bin/tests/system/checknames/ns1/ignore.example.db.in ZONE 2004,2007
./bin/tests/system/checknames/ns1/ignore.update.db.in ZONE 2004,2007
-./bin/tests/system/checknames/ns1/named.conf CONF-C 2004,2005,2007
+./bin/tests/system/checknames/ns1/named.conf.in CONF-C 2004,2005,2007,2018
./bin/tests/system/checknames/ns1/root.db ZONE 2004,2007
./bin/tests/system/checknames/ns1/warn.example.db.in ZONE 2004,2007
./bin/tests/system/checknames/ns1/warn.update.db.in ZONE 2004,2007
-./bin/tests/system/checknames/ns2/named.conf CONF-C 2004,2007
+./bin/tests/system/checknames/ns2/named.conf.in CONF-C 2004,2007,2018
./bin/tests/system/checknames/ns2/root.hints ZONE 2004,2007
-./bin/tests/system/checknames/ns3/named.conf CONF-C 2004,2007
+./bin/tests/system/checknames/ns3/named.conf.in CONF-C 2004,2007,2018
./bin/tests/system/checknames/ns3/root.hints ZONE 2004,2007
./bin/tests/system/checknames/ns4/master-ignore.update.db.in ZONE 2014
-./bin/tests/system/checknames/ns4/named.conf CONF-C 2014
+./bin/tests/system/checknames/ns4/named.conf.in CONF-C 2014,2018
./bin/tests/system/checknames/ns4/root.hints ZONE 2014
-./bin/tests/system/checknames/setup.sh SH 2004,2007,2012,2014
-./bin/tests/system/checknames/tests.sh SH 2004,2007,2012,2013,2014,2016
+./bin/tests/system/checknames/setup.sh SH 2004,2007,2012,2014,2018
+./bin/tests/system/checknames/tests.sh SH 2004,2007,2012,2013,2014,2016,2018
./bin/tests/system/checkzone/clean.sh SH 2011,2012,2013,2014
./bin/tests/system/checkzone/setup.sh SH 2014
-./bin/tests/system/checkzone/tests.sh SH 2011,2012,2013,2014,2015,2016,2017
+./bin/tests/system/checkzone/tests.sh SH 2011,2012,2013,2014,2015,2016,2017,2018
./bin/tests/system/checkzone/zones/.gitattributes X 2015
./bin/tests/system/checkzone/zones/bad-badclass.raw X 2015
./bin/tests/system/checkzone/zones/bad-caa-rr.db ZONE 2015
./bin/tests/system/checkzone/zones/test2.db ZONE 2013
./bin/tests/system/checkzone/zones/warn.inherit.origin.db ZONE 2014
./bin/tests/system/checkzone/zones/warn.inherited.owner.db ZONE 2014
-./bin/tests/system/clean.sh SH 2015
-./bin/tests/system/cleanall.sh SH 2000,2001,2004,2007,2012,2014,2015
+./bin/tests/system/clean.sh SH 2015,2018
+./bin/tests/system/cleanall.sh SH 2000,2001,2004,2007,2012,2014,2015,2018
./bin/tests/system/cleanpkcs11.sh SH 2010,2012,2014
-./bin/tests/system/common/controls.conf CONF-C 2000,2001,2004,2007,2013
+./bin/tests/system/common/controls.conf.in CONF-C 2000,2001,2004,2007,2013,2018
./bin/tests/system/common/rndc.conf CONF-C 2000,2001,2004,2007,2013
./bin/tests/system/common/rndc.key CONF-C 2011,2013
./bin/tests/system/common/root.hint ZONE 2000,2001,2004,2007
-./bin/tests/system/conf.sh.in SH 2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
-./bin/tests/system/conf.sh.win32 SH 2016,2017
+./bin/tests/system/conf.sh.in SH 2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
+./bin/tests/system/conf.sh.win32 SH 2016,2017,2018
./bin/tests/system/cookie/.gitignore X 2017
./bin/tests/system/cookie/bad-cookie-badhex.conf CONF-C 2017
./bin/tests/system/cookie/bad-cookie-toolong.conf CONF-C 2017
-./bin/tests/system/cookie/clean.sh SH 2017
+./bin/tests/system/cookie/clean.sh SH 2017,2018
./bin/tests/system/cookie/ns1/example.db ZONE 2017
-./bin/tests/system/cookie/ns1/named.conf CONF-C 2017
+./bin/tests/system/cookie/ns1/named.conf.in CONF-C 2017,2018
./bin/tests/system/cookie/ns1/root.hint ZONE 2017
-./bin/tests/system/cookie/ns2/named.conf CONF-C 2017
+./bin/tests/system/cookie/ns2/named.conf.in CONF-C 2017,2018
./bin/tests/system/cookie/ns2/root.db ZONE 2017
./bin/tests/system/cookie/prereq.sh.in SH 2017
-./bin/tests/system/cookie/tests.sh SH 2017
+./bin/tests/system/cookie/setup.sh SH 2018
+./bin/tests/system/cookie/tests.sh SH 2017,2018
./bin/tests/system/coverage/01-ksk-inactive/README X 2013
./bin/tests/system/coverage/01-ksk-inactive/expect X 2013
./bin/tests/system/coverage/02-zsk-inactive/README X 2013
./bin/tests/system/coverage/11-cutoff/README X 2014
./bin/tests/system/coverage/11-cutoff/expect X 2014
./bin/tests/system/coverage/clean.sh SH 2013,2014,2016
-./bin/tests/system/coverage/prereq.sh SH 2014
+./bin/tests/system/coverage/prereq.sh SH 2014,2018
./bin/tests/system/coverage/setup.sh SH 2013,2014
-./bin/tests/system/coverage/tests.sh SH 2013,2014,2016
-./bin/tests/system/database/clean.sh SH 2011,2012
-./bin/tests/system/database/ns1/named.conf1 CONF-C 2011,2013
-./bin/tests/system/database/ns1/named.conf2 CONF-C 2011,2013
-./bin/tests/system/database/setup.sh SH 2011,2012
-./bin/tests/system/database/tests.sh SH 2011,2012,2016
+./bin/tests/system/coverage/tests.sh SH 2013,2014,2016,2018
+./bin/tests/system/database/clean.sh SH 2011,2012,2018
+./bin/tests/system/database/ns1/named1.conf.in CONF-C 2011,2013,2018
+./bin/tests/system/database/ns1/named2.conf.in CONF-C 2011,2013,2018
+./bin/tests/system/database/setup.sh SH 2011,2012,2018
+./bin/tests/system/database/tests.sh SH 2011,2012,2016,2018
./bin/tests/system/dialup/ns1/example.db ZONE 2000,2001,2004,2007
./bin/tests/system/dialup/ns1/named.conf CONF-C 2000,2001,2004,2007
./bin/tests/system/dialup/ns1/root.db ZONE 2000,2001,2004,2007
./bin/tests/system/dialup/tests.sh SH 2000,2001,2004,2007,2012,2016
./bin/tests/system/digcomp.pl PERL 2000,2001,2004,2007,2012,2013,2016
./bin/tests/system/digdelv/ans4/startme X 2017
-./bin/tests/system/digdelv/clean.sh SH 2015,2016
-./bin/tests/system/digdelv/ns1/named.conf CONF-C 2015
+./bin/tests/system/digdelv/clean.sh SH 2015,2016,2018
+./bin/tests/system/digdelv/ns1/named.conf.in CONF-C 2015,2018
./bin/tests/system/digdelv/ns1/root.db ZONE 2015
./bin/tests/system/digdelv/ns2/example.db ZONE 2015,2016
-./bin/tests/system/digdelv/ns2/named.conf CONF-C 2015
-./bin/tests/system/digdelv/ns3/named.conf CONF-C 2015,2017
-./bin/tests/system/digdelv/tests.sh SH 2015,2016,2017
+./bin/tests/system/digdelv/ns2/named.conf.in CONF-C 2015,2018
+./bin/tests/system/digdelv/ns3/named.conf.in CONF-C 2015,2017,2018
+./bin/tests/system/digdelv/setup.sh SH 2018
+./bin/tests/system/digdelv/tests.sh SH 2015,2016,2017,2018
./bin/tests/system/ditch.pl PERL 2015
-./bin/tests/system/dlv/clean.sh SH 2004,2007,2010,2011,2012,2014
-./bin/tests/system/dlv/ns1/named.conf CONF-C 2004,2007,2011
-./bin/tests/system/dlv/ns1/root.db.in ZONE 2011
-./bin/tests/system/dlv/ns1/rootservers.utld.db ZONE 2004,2007
-./bin/tests/system/dlv/ns1/sign.sh SH 2011,2012,2014
-./bin/tests/system/dlv/ns2/druz.db.in ZONE 2011
-./bin/tests/system/dlv/ns2/hints ZONE 2004,2007
-./bin/tests/system/dlv/ns2/named.conf CONF-C 2004,2007,2011
-./bin/tests/system/dlv/ns2/sign.sh SH 2011,2012,2014
-./bin/tests/system/dlv/ns2/utld.db ZONE 2004,2007
-./bin/tests/system/dlv/ns3/child.db.in ZONE 2004,2007,2010
-./bin/tests/system/dlv/ns3/dlv.db.in ZONE 2004,2007
-./bin/tests/system/dlv/ns3/hints ZONE 2004,2007
-./bin/tests/system/dlv/ns3/named.conf CONF-C 2004,2007,2011
-./bin/tests/system/dlv/ns3/sign.sh SH 2004,2007,2009,2010,2011,2012,2014,2016
-./bin/tests/system/dlv/ns4/child.db ZONE 2004,2007
-./bin/tests/system/dlv/ns4/hints ZONE 2004,2007
-./bin/tests/system/dlv/ns4/named.conf CONF-C 2004,2007
-./bin/tests/system/dlv/ns5/hints ZONE 2004,2007
-./bin/tests/system/dlv/ns5/named.conf CONF-C 2004,2006,2007,2011,2013
-./bin/tests/system/dlv/ns5/rndc.conf CONF-C 2004,2007,2013
-./bin/tests/system/dlv/ns6/child.db.in ZONE 2010
-./bin/tests/system/dlv/ns6/hints ZONE 2010
-./bin/tests/system/dlv/ns6/named.conf CONF-C 2010,2011
-./bin/tests/system/dlv/ns6/sign.sh SH 2010,2011,2012,2014
-./bin/tests/system/dlv/prereq.sh SH 2014
-./bin/tests/system/dlv/setup.sh SH 2004,2007,2009,2011,2012,2014
-./bin/tests/system/dlv/tests.sh SH 2004,2007,2010,2011,2012,2016
+./bin/tests/system/dlv/clean.sh SH 2004,2007,2010,2011,2012,2014,2018
+./bin/tests/system/dlv/ns1/named.conf.in CONF-C 2004,2007,2011,2018
+./bin/tests/system/dlv/ns1/root.db.in ZONE 2011,2018
+./bin/tests/system/dlv/ns1/rootservers.utld.db ZONE 2004,2007,2018
+./bin/tests/system/dlv/ns1/sign.sh SH 2011,2012,2014,2018
+./bin/tests/system/dlv/ns2/druz.db.in ZONE 2011,2018
+./bin/tests/system/dlv/ns2/hints ZONE 2004,2007,2018
+./bin/tests/system/dlv/ns2/named.conf.in CONF-C 2004,2007,2011,2018
+./bin/tests/system/dlv/ns2/sign.sh SH 2011,2012,2014,2018
+./bin/tests/system/dlv/ns2/utld.db ZONE 2004,2007,2018
+./bin/tests/system/dlv/ns3/child.db.in ZONE 2004,2007,2010,2018
+./bin/tests/system/dlv/ns3/dlv.db.in ZONE 2004,2007,2018
+./bin/tests/system/dlv/ns3/hints ZONE 2004,2007,2018
+./bin/tests/system/dlv/ns3/named.conf.in CONF-C 2004,2007,2011,2018
+./bin/tests/system/dlv/ns3/sign.sh SH 2004,2007,2009,2010,2011,2012,2014,2016,2018
+./bin/tests/system/dlv/ns4/child.db ZONE 2004,2007,2018
+./bin/tests/system/dlv/ns4/hints ZONE 2004,2007,2018
+./bin/tests/system/dlv/ns4/named.conf.in CONF-C 2004,2007,2018
+./bin/tests/system/dlv/ns5/hints ZONE 2004,2007,2018
+./bin/tests/system/dlv/ns5/named.conf.in CONF-C 2004,2006,2007,2011,2013,2018
+./bin/tests/system/dlv/ns5/rndc.conf CONF-C 2004,2007,2013,2018
+./bin/tests/system/dlv/ns6/child.db.in ZONE 2010,2018
+./bin/tests/system/dlv/ns6/hints ZONE 2010,2018
+./bin/tests/system/dlv/ns6/named.conf.in CONF-C 2010,2011,2018
+./bin/tests/system/dlv/ns6/sign.sh SH 2010,2011,2012,2014,2018
+./bin/tests/system/dlv/prereq.sh SH 2014,2018
+./bin/tests/system/dlv/setup.sh SH 2004,2007,2009,2011,2012,2014,2018
+./bin/tests/system/dlv/tests.sh SH 2004,2007,2010,2011,2012,2016,2018
./bin/tests/system/dlz/.gitignore X 2012
-./bin/tests/system/dlz/clean.sh SH 2010,2012
+./bin/tests/system/dlz/clean.sh SH 2010,2012,2018
./bin/tests/system/dlz/ns1/dns-root/com/broken/dns.d/@/DNAME=10=example.net.= TXT.BRIEF 2015
./bin/tests/system/dlz/ns1/dns-root/com/broken/dns.d/@/NS=10=example.com.= TXT.BRIEF 2015
./bin/tests/system/dlz/ns1/dns-root/com/broken/dns.d/@/SOA=10=ns.example.com.=root.example.com.=None=None=None=None=None= TXT.BRIEF 2015
./bin/tests/system/dlz/ns1/dns-root/com/example/dns.d/@/NS=10=example.com.= TXT.BRIEF 2010
./bin/tests/system/dlz/ns1/dns-root/com/example/dns.d/@/SOA=10=ns.example.com.=root.example.com.=2010062900=0=0=0=10= TXT.BRIEF 2010
./bin/tests/system/dlz/ns1/dns-root/com/example/xfr.d/10.53.0.1 TXT.BRIEF 2010
-./bin/tests/system/dlz/ns1/named.conf CONF-C 2010,2012
-./bin/tests/system/dlz/prereq.sh.in SH 2011,2012
-./bin/tests/system/dlz/tests.sh SH 2010,2011,2012,2013,2015,2016
+./bin/tests/system/dlz/ns1/named.conf.in CONF-C 2010,2012,2018
+./bin/tests/system/dlz/prereq.sh.in SH 2011,2012,2018
+./bin/tests/system/dlz/setup.sh SH 2018
+./bin/tests/system/dlz/tests.sh SH 2010,2011,2012,2013,2015,2016,2018
./bin/tests/system/dlzexternal/Makefile.in MAKE 2011,2012,2014,2015,2016,2017
-./bin/tests/system/dlzexternal/clean.sh SH 2010,2012,2014,2015
+./bin/tests/system/dlzexternal/clean.sh SH 2010,2012,2014,2015,2018
./bin/tests/system/dlzexternal/driver.c C 2011,2012,2013,2014,2015,2017
./bin/tests/system/dlzexternal/driver.h C 2011
-./bin/tests/system/dlzexternal/ns1/.gitignore X 2012
-./bin/tests/system/dlzexternal/ns1/named.conf.in CONF-C 2011,2012,2013
-./bin/tests/system/dlzexternal/prereq.sh SH 2010,2011,2012,2014,2016
-./bin/tests/system/dlzexternal/setup.sh SH 2010,2012,2014
-./bin/tests/system/dlzexternal/tests.sh SH 2010,2011,2012,2013,2014,2016
+./bin/tests/system/dlzexternal/ns1/.gitignore X 2012,2018
+./bin/tests/system/dlzexternal/ns1/dlzs.conf.in CONF-C 2018
+./bin/tests/system/dlzexternal/ns1/named.conf.in CONF-C 2011,2012,2013,2018
+./bin/tests/system/dlzexternal/prereq.sh SH 2010,2011,2012,2014,2016,2018
+./bin/tests/system/dlzexternal/setup.sh SH 2010,2012,2014,2018
+./bin/tests/system/dlzexternal/tests.sh SH 2010,2011,2012,2013,2014,2016,2018
./bin/tests/system/dlzredir/.gitignore X 2012
./bin/tests/system/dlzredir/clean.sh SH 2012
./bin/tests/system/dlzredir/ns1/dns-root/dns.d/-/A=10=100.100.100.2= X 2012
./bin/tests/system/dlzredir/ns1/dns-root/dns.d/@/NS=10=root.= X 2012
./bin/tests/system/dlzredir/ns1/dns-root/dns.d/@/SOA=10=ns.root.=root.root.=2012051500=0=0=0=10= X 2012
-./bin/tests/system/dlzredir/ns1/named.conf CONF-C 2012
-./bin/tests/system/dlzredir/ns1/root.db ZONE 2012
./bin/tests/system/dlzredir/prereq.sh.in SH 2012
./bin/tests/system/dlzredir/tests.sh SH 2012
-./bin/tests/system/dns64/clean.sh SH 2010,2012,2014,2015
+./bin/tests/system/dns64/clean.sh SH 2010,2012,2014,2015,2018
./bin/tests/system/dns64/conf/bad1.conf CONF-C 2010
./bin/tests/system/dns64/conf/bad2.conf CONF-C 2010
./bin/tests/system/dns64/conf/bad3.conf CONF-C 2010
./bin/tests/system/dns64/conf/good4.conf CONF-C 2010
./bin/tests/system/dns64/conf/good5.conf CONF-C 2010
./bin/tests/system/dns64/ns1/example.db ZONE 2010,2011,2013,2016
-./bin/tests/system/dns64/ns1/named.conf CONF-C 2010
+./bin/tests/system/dns64/ns1/named.conf.in CONF-C 2010,2018
./bin/tests/system/dns64/ns1/root.db ZONE 2010
./bin/tests/system/dns64/ns1/sign.sh SH 2010,2012,2014
-./bin/tests/system/dns64/ns2/named.conf CONF-C 2010,2011,2013,2016
+./bin/tests/system/dns64/ns2/named.conf.in CONF-C 2010,2011,2013,2016,2018
./bin/tests/system/dns64/ns2/rpz.db ZONE 2013
./bin/tests/system/dns64/prereq.sh SH 2014
-./bin/tests/system/dns64/setup.sh SH 2010,2012,2014
-./bin/tests/system/dns64/tests.sh SH 2010,2011,2012,2013,2014,2016
+./bin/tests/system/dns64/setup.sh SH 2010,2012,2014,2018
+./bin/tests/system/dns64/tests.sh SH 2010,2011,2012,2013,2014,2016,2018
./bin/tests/system/dnssec/README TXT.BRIEF 2000,2001,2002,2004,2011
-./bin/tests/system/dnssec/clean.sh SH 2000,2001,2002,2004,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
-./bin/tests/system/dnssec/dnssec_update_test.pl PERL 2002,2004,2007,2010,2012
-./bin/tests/system/dnssec/ns1/named.conf CONF-C 2000,2001,2004,2006,2007,2016
+./bin/tests/system/dnssec/clean.sh SH 2000,2001,2002,2004,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
+./bin/tests/system/dnssec/dnssec_update_test.pl PERL 2002,2004,2007,2010,2012,2018
+./bin/tests/system/dnssec/ns1/named.conf.in CONF-C 2000,2001,2004,2006,2007,2016,2018
./bin/tests/system/dnssec/ns1/root.db.in ZONE 2000,2001,2004,2007,2010,2013,2014
./bin/tests/system/dnssec/ns1/sign.sh SH 2000,2001,2002,2003,2004,2006,2007,2008,2009,2010,2011,2012,2013,2014,2016
./bin/tests/system/dnssec/ns2/algroll.db.in ZONE 2010
./bin/tests/system/dnssec/ns2/example.db.in ZONE 2000,2001,2002,2004,2007,2008,2009,2010,2011,2012,2013,2014,2016
./bin/tests/system/dnssec/ns2/in-addr.arpa.db.in ZONE 2014
./bin/tests/system/dnssec/ns2/insecure.secure.example.db ZONE 2000,2001,2004,2007,2013
-./bin/tests/system/dnssec/ns2/named.conf CONF-C 2000,2001,2002,2004,2006,2007,2008,2010,2011,2014,2015
+./bin/tests/system/dnssec/ns2/named.conf.in CONF-C 2000,2001,2002,2004,2006,2007,2008,2010,2011,2014,2015,2018
./bin/tests/system/dnssec/ns2/private.secure.example.db.in ZONE 2000,2001,2004,2007
./bin/tests/system/dnssec/ns2/rfc2335.example.db X 2004
./bin/tests/system/dnssec/ns2/sign.sh SH 2000,2001,2002,2003,2004,2006,2007,2008,2009,2010,2011,2012,2014,2015,2016
./bin/tests/system/dnssec/ns3/lower.example.db.in ZONE 2012
./bin/tests/system/dnssec/ns3/managed-future.example.db.in ZONE 2016
./bin/tests/system/dnssec/ns3/multiple.example.db.in ZONE 2006,2008
-./bin/tests/system/dnssec/ns3/named.conf CONF-C 2000,2001,2002,2004,2006,2007,2008,2009,2010,2011,2012,2013,2014,2016
+./bin/tests/system/dnssec/ns3/named.conf.in CONF-C 2000,2001,2002,2004,2006,2007,2008,2009,2010,2011,2012,2013,2014,2016,2018
./bin/tests/system/dnssec/ns3/nosign.example.db.in ZONE 2011
./bin/tests/system/dnssec/ns3/nsec3-unknown.example.db.in ZONE 2006,2008
./bin/tests/system/dnssec/ns3/nsec3.example.db.in ZONE 2006,2008
./bin/tests/system/dnssec/ns3/ttlpatch.example.db.in ZONE 2011
./bin/tests/system/dnssec/ns3/update-nsec3.example.db.in ZONE 2011
./bin/tests/system/dnssec/ns3/upper.example.db.in ZONE 2012
-./bin/tests/system/dnssec/ns4/named1.conf CONF-C 2011,2013
-./bin/tests/system/dnssec/ns4/named2.conf CONF-C 2011,2013
-./bin/tests/system/dnssec/ns4/named3.conf CONF-C 2012,2013
-./bin/tests/system/dnssec/ns4/named4.conf CONF-C 2013,2017
-./bin/tests/system/dnssec/ns4/named5.conf CONF-C 2017
+./bin/tests/system/dnssec/ns4/named1.conf.in CONF-C 2011,2013,2018
+./bin/tests/system/dnssec/ns4/named2.conf.in CONF-C 2011,2013,2018
+./bin/tests/system/dnssec/ns4/named3.conf.in CONF-C 2012,2013,2018
+./bin/tests/system/dnssec/ns4/named4.conf.in CONF-C 2013,2017,2018
+./bin/tests/system/dnssec/ns4/named5.conf.in CONF-C 2017,2018
./bin/tests/system/dnssec/ns5/.gitignore X 2015
-./bin/tests/system/dnssec/ns5/named1.conf CONF-C 2000,2001,2004,2006,2007,2015
-./bin/tests/system/dnssec/ns5/named2.conf CONF-C 2000,2001,2004,2006,2007,2015
+./bin/tests/system/dnssec/ns5/named1.conf.in CONF-C 2000,2001,2004,2006,2007,2015,2018
+./bin/tests/system/dnssec/ns5/named2.conf.in CONF-C 2000,2001,2004,2006,2007,2015,2018
./bin/tests/system/dnssec/ns5/sign.sh SH 2015
./bin/tests/system/dnssec/ns5/trusted.conf.bad CONF-C 2000,2001,2004,2007
./bin/tests/system/dnssec/ns6/named.args X 2013,2016
-./bin/tests/system/dnssec/ns6/named.conf CONF-C 2004,2006,2007,2013
+./bin/tests/system/dnssec/ns6/named.conf.in CONF-C 2004,2006,2007,2013,2018
./bin/tests/system/dnssec/ns6/optout-tld.db.in ZONE 2013
./bin/tests/system/dnssec/ns6/sign.sh SH 2013,2014
-./bin/tests/system/dnssec/ns7/named.conf CONF-C 2006,2008,2010,2014
+./bin/tests/system/dnssec/ns7/named.conf.in CONF-C 2006,2008,2010,2014,2018
./bin/tests/system/dnssec/ns7/named.nosoa TXT.BRIEF 2010
./bin/tests/system/dnssec/ns7/nosoa.secure.example.db ZONE 2010
./bin/tests/system/dnssec/ns7/sign.sh SH 2014
./bin/tests/system/dnssec/ns7/split-rrsig.db.in ZONE 2014
-./bin/tests/system/dnssec/prereq.sh SH 2000,2001,2002,2004,2006,2007,2009,2012,2014,2015
-./bin/tests/system/dnssec/setup.sh SH 2000,2001,2004,2007,2009,2011,2012,2013,2014,2015
+./bin/tests/system/dnssec/prereq.sh SH 2000,2001,2002,2004,2006,2007,2009,2012,2014,2015,2018
+./bin/tests/system/dnssec/setup.sh SH 2000,2001,2004,2007,2009,2011,2012,2013,2014,2015,2018
./bin/tests/system/dnssec/signer/example.db.in ZONE 2010
./bin/tests/system/dnssec/signer/remove.db.in ZONE 2016
./bin/tests/system/dnssec/signer/remove2.db.in ZONE 2016
-./bin/tests/system/dnssec/tests.sh SH 2000,2001,2002,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
-./bin/tests/system/dscp/clean.sh SH 2013,2015
+./bin/tests/system/dnssec/tests.sh SH 2000,2001,2002,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
+./bin/tests/system/dscp/clean.sh SH 2013,2015,2018
./bin/tests/system/dscp/ns1/named.args X 2013
-./bin/tests/system/dscp/ns1/named.conf CONF-C 2013
+./bin/tests/system/dscp/ns1/named.conf.in CONF-C 2013,2018
./bin/tests/system/dscp/ns1/root.db ZONE 2013
./bin/tests/system/dscp/ns2/named.args X 2013
-./bin/tests/system/dscp/ns2/named.conf CONF-C 2013
+./bin/tests/system/dscp/ns2/named.conf.in CONF-C 2013,2018
./bin/tests/system/dscp/ns3/hint.db ZONE 2013
./bin/tests/system/dscp/ns3/named.args X 2013
-./bin/tests/system/dscp/ns3/named.conf CONF-C 2013
+./bin/tests/system/dscp/ns3/named.conf.in CONF-C 2013,2018
./bin/tests/system/dscp/ns4/named.args X 2013
-./bin/tests/system/dscp/ns4/named.conf CONF-C 2013
+./bin/tests/system/dscp/ns4/named.conf.in CONF-C 2013,2018
./bin/tests/system/dscp/ns4/root.db ZONE 2013
./bin/tests/system/dscp/ns5/named.args X 2013
-./bin/tests/system/dscp/ns5/named.conf CONF-C 2013
+./bin/tests/system/dscp/ns5/named.conf.in CONF-C 2013,2018
./bin/tests/system/dscp/ns6/hint.db ZONE 2013
./bin/tests/system/dscp/ns6/named.args X 2013
-./bin/tests/system/dscp/ns6/named.conf CONF-C 2013
+./bin/tests/system/dscp/ns6/named.conf.in CONF-C 2013,2018
./bin/tests/system/dscp/ns7/named.args X 2013
-./bin/tests/system/dscp/ns7/named.conf CONF-C 2013
-./bin/tests/system/dscp/tests.sh SH 2013,2016
-./bin/tests/system/dsdigest/clean.sh SH 2012,2014
-./bin/tests/system/dsdigest/ns1/named.conf CONF-C 2012
+./bin/tests/system/dscp/ns7/named.conf.in CONF-C 2013,2018
+./bin/tests/system/dscp/setup.sh SH 2018
+./bin/tests/system/dscp/tests.sh SH 2013,2016,2018
+./bin/tests/system/dsdigest/clean.sh SH 2012,2014,2018
+./bin/tests/system/dsdigest/ns1/named.conf.in CONF-C 2012,2018
./bin/tests/system/dsdigest/ns1/root.db.in ZONE 2012
./bin/tests/system/dsdigest/ns1/sign.sh SH 2012,2014,2016
./bin/tests/system/dsdigest/ns2/bad.db.in ZONE 2012
./bin/tests/system/dsdigest/ns2/good.db.in ZONE 2012
-./bin/tests/system/dsdigest/ns2/named.conf CONF-C 2012
+./bin/tests/system/dsdigest/ns2/named.conf.in CONF-C 2012,2018
./bin/tests/system/dsdigest/ns2/sign.sh SH 2012,2014,2016
-./bin/tests/system/dsdigest/ns3/named.conf CONF-C 2012
-./bin/tests/system/dsdigest/ns4/named.conf CONF-C 2012
-./bin/tests/system/dsdigest/prereq.sh SH 2012,2014
-./bin/tests/system/dsdigest/setup.sh SH 2012,2014
-./bin/tests/system/dsdigest/tests.sh SH 2012,2016
+./bin/tests/system/dsdigest/ns3/named.conf.in CONF-C 2012,2018
+./bin/tests/system/dsdigest/ns4/named.conf.in CONF-C 2012,2018
+./bin/tests/system/dsdigest/prereq.sh SH 2012,2014,2018
+./bin/tests/system/dsdigest/setup.sh SH 2012,2014,2018
+./bin/tests/system/dsdigest/tests.sh SH 2012,2016,2018
./bin/tests/system/ecdsa/clean.sh SH 2012,2014
./bin/tests/system/ecdsa/ns1/named.conf CONF-C 2012
./bin/tests/system/ecdsa/ns1/root.db.in ZONE 2012
./bin/tests/system/eddsa/prereq.sh SH 2017
./bin/tests/system/eddsa/setup.sh SH 2017
./bin/tests/system/eddsa/tests.sh SH 2017
-./bin/tests/system/ednscompliance/clean.sh SH 2015
-./bin/tests/system/ednscompliance/tests.sh SH 2015,2016
+./bin/tests/system/ednscompliance/clean.sh SH 2015,2018
+./bin/tests/system/ednscompliance/ns1/named.conf.in CONF-C 2018
+./bin/tests/system/ednscompliance/setup.sh SH 2018
+./bin/tests/system/ednscompliance/tests.sh SH 2015,2016,2018
./bin/tests/system/emptyzones/clean.sh SH 2014,2015
./bin/tests/system/emptyzones/ns1/empty.db ZONE 2014
-./bin/tests/system/emptyzones/ns1/named1.conf CONF-C 2014
-./bin/tests/system/emptyzones/ns1/named2.conf CONF-C 2014,2015
+./bin/tests/system/emptyzones/ns1/named1.conf.in CONF-C 2014,2018
+./bin/tests/system/emptyzones/ns1/named2.conf.in CONF-C 2014,2015,2018
./bin/tests/system/emptyzones/ns1/rfc1918.zones CONF-C 2014
./bin/tests/system/emptyzones/ns1/root.hint ZONE 2014
-./bin/tests/system/emptyzones/setup.sh SH 2014
-./bin/tests/system/emptyzones/tests.sh SH 2014,2015,2016
+./bin/tests/system/emptyzones/setup.sh SH 2014,2018
+./bin/tests/system/emptyzones/tests.sh SH 2014,2015,2016,2018
./bin/tests/system/feature-test.c C 2016
-./bin/tests/system/fetchlimit/ans4/ans.pl PERL 2015
-./bin/tests/system/fetchlimit/clean.sh SH 2015
-./bin/tests/system/fetchlimit/ns1/named.conf CONF-C 2015
+./bin/tests/system/fetchlimit/ans4/ans.pl PERL 2015,2018
+./bin/tests/system/fetchlimit/clean.sh SH 2015,2018
+./bin/tests/system/fetchlimit/ns1/named.conf.in CONF-C 2015,2018
./bin/tests/system/fetchlimit/ns1/root.db ZONE 2015
./bin/tests/system/fetchlimit/ns2/example.db ZONE 2015
-./bin/tests/system/fetchlimit/ns2/named.conf CONF-C 2015
+./bin/tests/system/fetchlimit/ns2/named.conf.in CONF-C 2015,2018
./bin/tests/system/fetchlimit/ns3/named.args X 2015
-./bin/tests/system/fetchlimit/ns3/named1.conf CONF-C 2015
-./bin/tests/system/fetchlimit/ns3/named2.conf CONF-C 2015
-./bin/tests/system/fetchlimit/ns3/named3.conf CONF-C 2015
+./bin/tests/system/fetchlimit/ns3/named1.conf.in CONF-C 2015,2018
+./bin/tests/system/fetchlimit/ns3/named2.conf.in CONF-C 2015,2018
+./bin/tests/system/fetchlimit/ns3/named3.conf.in CONF-C 2015,2018
./bin/tests/system/fetchlimit/ns3/root.hint ZONE 2015
./bin/tests/system/fetchlimit/prereq.sh SH 2015,2016
-./bin/tests/system/fetchlimit/setup.sh SH 2015
-./bin/tests/system/fetchlimit/tests.sh SH 2015,2016
+./bin/tests/system/fetchlimit/setup.sh SH 2015,2018
+./bin/tests/system/fetchlimit/tests.sh SH 2015,2016,2018
./bin/tests/system/filter-aaaa/.gitignore X 2012,2014,2016
-./bin/tests/system/filter-aaaa/clean.sh SH 2010,2012,2014
+./bin/tests/system/filter-aaaa/clean.sh SH 2010,2012,2014,2018
./bin/tests/system/filter-aaaa/conf/bad1.conf CONF-C 2010
./bin/tests/system/filter-aaaa/conf/bad2.conf CONF-C 2010
./bin/tests/system/filter-aaaa/conf/bad3.conf CONF-C 2010
./bin/tests/system/filter-aaaa/conf/good6.conf CONF-C 2010
./bin/tests/system/filter-aaaa/conf/good7.conf CONF-C 2010
./bin/tests/system/filter-aaaa/conf/good8.conf CONF-C 2010
-./bin/tests/system/filter-aaaa/ns1/named1.conf CONF-C 2012,2013
-./bin/tests/system/filter-aaaa/ns1/named2.conf CONF-C 2012,2013
+./bin/tests/system/filter-aaaa/ns1/named1.conf.in CONF-C 2012,2013,2018
+./bin/tests/system/filter-aaaa/ns1/named2.conf.in CONF-C 2012,2013,2018
./bin/tests/system/filter-aaaa/ns1/root.db ZONE 2010,2012,2017
-./bin/tests/system/filter-aaaa/ns1/sign.sh SH 2010,2012,2014
+./bin/tests/system/filter-aaaa/ns1/sign.sh SH 2010,2012,2014,2018
./bin/tests/system/filter-aaaa/ns1/signed.db.in ZONE 2010,2012,2017
./bin/tests/system/filter-aaaa/ns1/signed.db.presigned X 2014,2017
./bin/tests/system/filter-aaaa/ns1/unsigned.db ZONE 2010,2012,2017
./bin/tests/system/filter-aaaa/ns2/hints ZONE 2010
-./bin/tests/system/filter-aaaa/ns2/named1.conf CONF-C 2012,2013
-./bin/tests/system/filter-aaaa/ns2/named2.conf CONF-C 2012,2013
+./bin/tests/system/filter-aaaa/ns2/named1.conf.in CONF-C 2012,2013,2018
+./bin/tests/system/filter-aaaa/ns2/named2.conf.in CONF-C 2012,2013,2018
./bin/tests/system/filter-aaaa/ns3/hints ZONE 2010
-./bin/tests/system/filter-aaaa/ns3/named1.conf CONF-C 2012,2013
-./bin/tests/system/filter-aaaa/ns3/named2.conf CONF-C 2012,2013
-./bin/tests/system/filter-aaaa/ns4/named1.conf CONF-C 2012,2013
-./bin/tests/system/filter-aaaa/ns4/named2.conf CONF-C 2012,2013
+./bin/tests/system/filter-aaaa/ns3/named1.conf.in CONF-C 2012,2013,2018
+./bin/tests/system/filter-aaaa/ns3/named2.conf.in CONF-C 2012,2013,2018
+./bin/tests/system/filter-aaaa/ns4/named1.conf.in CONF-C 2012,2013,2018
+./bin/tests/system/filter-aaaa/ns4/named2.conf.in CONF-C 2012,2013,2018
./bin/tests/system/filter-aaaa/ns4/root.db ZONE 2010,2012,2017
-./bin/tests/system/filter-aaaa/ns4/sign.sh SH 2010,2012,2014
+./bin/tests/system/filter-aaaa/ns4/sign.sh SH 2010,2012,2014,2018
./bin/tests/system/filter-aaaa/ns4/signed.db.in ZONE 2010,2012,2017
./bin/tests/system/filter-aaaa/ns4/signed.db.presigned X 2014
./bin/tests/system/filter-aaaa/ns4/unsigned.db ZONE 2010,2012,2017
./bin/tests/system/filter-aaaa/prereq.sh SH 2010,2012,2014,2016
-./bin/tests/system/filter-aaaa/setup.sh SH 2010,2012,2014
-./bin/tests/system/filter-aaaa/tests.sh SH 2010,2012,2015,2016,2017
-./bin/tests/system/formerr/clean.sh SH 2013,2015
+./bin/tests/system/filter-aaaa/setup.sh SH 2010,2012,2014,2018
+./bin/tests/system/filter-aaaa/tests.sh SH 2010,2012,2015,2016,2017,2018
+./bin/tests/system/formerr/clean.sh SH 2013,2015,2018
./bin/tests/system/formerr/formerr.pl PERL 2013,2014
./bin/tests/system/formerr/nametoolong X 2013
./bin/tests/system/formerr/noquestions X 2013
-./bin/tests/system/formerr/ns1/named.conf CONF-C 2013
+./bin/tests/system/formerr/ns1/named.conf.in CONF-C 2013,2018
./bin/tests/system/formerr/ns1/root.db ZONE 2013
-./bin/tests/system/formerr/tests.sh SH 2013,2016
+./bin/tests/system/formerr/setup.sh SH 2018
+./bin/tests/system/formerr/tests.sh SH 2013,2016,2018
./bin/tests/system/formerr/twoquestions X 2013
-./bin/tests/system/forward/clean.sh SH 2000,2001,2004,2007,2012,2015
+./bin/tests/system/forward/clean.sh SH 2000,2001,2004,2007,2012,2015,2018
./bin/tests/system/forward/ns1/example.db X 2000,2001
-./bin/tests/system/forward/ns1/named.conf CONF-C 2000,2001,2004,2007,2014
+./bin/tests/system/forward/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2014,2018
./bin/tests/system/forward/ns1/root.db ZONE 2000,2001,2004,2007
./bin/tests/system/forward/ns2/example.db X 2000,2001
-./bin/tests/system/forward/ns2/named.conf CONF-C 2000,2001,2004,2007,2013,2014
+./bin/tests/system/forward/ns2/named.conf.in CONF-C 2000,2001,2004,2007,2013,2014,2018
./bin/tests/system/forward/ns2/root.db ZONE 2000,2001,2004,2007
-./bin/tests/system/forward/ns3/named.conf CONF-C 2000,2001,2004,2007
+./bin/tests/system/forward/ns3/named.conf.in CONF-C 2000,2001,2004,2007,2018
./bin/tests/system/forward/ns3/root.db ZONE 2000,2001,2004,2007
-./bin/tests/system/forward/ns4/named.conf CONF-C 2000,2001,2004,2007,2013,2014
+./bin/tests/system/forward/ns4/named.conf.in CONF-C 2000,2001,2004,2007,2013,2014,2018
./bin/tests/system/forward/ns4/root.db ZONE 2000,2001,2004,2007
-./bin/tests/system/forward/ns5/named.conf CONF-C 2011
+./bin/tests/system/forward/ns5/named.conf.in CONF-C 2011,2018
./bin/tests/system/forward/ns5/root.db ZONE 2011
./bin/tests/system/forward/rfc1918-inherited.conf CONF-C 2016
./bin/tests/system/forward/rfc1918-notinherited.conf CONF-C 2016
-./bin/tests/system/forward/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2014,2016
+./bin/tests/system/forward/setup.sh SH 2018
+./bin/tests/system/forward/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2014,2016,2018
./bin/tests/system/forward/ula-inherited.conf CONF-C 2016
./bin/tests/system/forward/ula-notinherited.conf CONF-C 2016
./bin/tests/system/genzone.sh SH 2001,2002,2003,2004,2007,2009,2011,2012,2013,2014,2015,2016,2017
./bin/tests/system/geoip/data/GeoIPv6.dat X 2013
./bin/tests/system/geoip/data/README TXT.BRIEF 2013,2014
./bin/tests/system/geoip/ns2/example.db.in ZONE 2013
-./bin/tests/system/geoip/ns2/named1.conf CONF-C 2013
-./bin/tests/system/geoip/ns2/named10.conf CONF-C 2014
-./bin/tests/system/geoip/ns2/named11.conf CONF-C 2013,2014
-./bin/tests/system/geoip/ns2/named12.conf CONF-C 2013,2014
-./bin/tests/system/geoip/ns2/named13.conf CONF-C 2014
-./bin/tests/system/geoip/ns2/named14.conf CONF-C 2014
-./bin/tests/system/geoip/ns2/named15.conf CONF-C 2014
-./bin/tests/system/geoip/ns2/named2.conf CONF-C 2013
-./bin/tests/system/geoip/ns2/named3.conf CONF-C 2013
-./bin/tests/system/geoip/ns2/named4.conf CONF-C 2013
-./bin/tests/system/geoip/ns2/named5.conf CONF-C 2013
-./bin/tests/system/geoip/ns2/named6.conf CONF-C 2013,2014
-./bin/tests/system/geoip/ns2/named7.conf CONF-C 2013
-./bin/tests/system/geoip/ns2/named8.conf CONF-C 2013
-./bin/tests/system/geoip/ns2/named9.conf CONF-C 2013
+./bin/tests/system/geoip/ns2/named1.conf.in CONF-C 2013,2018
+./bin/tests/system/geoip/ns2/named10.conf.in CONF-C 2014,2018
+./bin/tests/system/geoip/ns2/named11.conf.in CONF-C 2013,2014,2018
+./bin/tests/system/geoip/ns2/named12.conf.in CONF-C 2013,2014,2018
+./bin/tests/system/geoip/ns2/named13.conf.in CONF-C 2014,2018
+./bin/tests/system/geoip/ns2/named14.conf.in CONF-C 2014,2018
+./bin/tests/system/geoip/ns2/named15.conf.in CONF-C 2014,2018
+./bin/tests/system/geoip/ns2/named2.conf.in CONF-C 2013,2018
+./bin/tests/system/geoip/ns2/named3.conf.in CONF-C 2013,2018
+./bin/tests/system/geoip/ns2/named4.conf.in CONF-C 2013,2018
+./bin/tests/system/geoip/ns2/named5.conf.in CONF-C 2013,2018
+./bin/tests/system/geoip/ns2/named6.conf.in CONF-C 2013,2014,2018
+./bin/tests/system/geoip/ns2/named7.conf.in CONF-C 2013,2018
+./bin/tests/system/geoip/ns2/named8.conf.in CONF-C 2013,2018
+./bin/tests/system/geoip/ns2/named9.conf.in CONF-C 2013,2018
./bin/tests/system/geoip/options.conf CONF-C 2015
-./bin/tests/system/geoip/prereq.sh SH 2013,2014,2016
-./bin/tests/system/geoip/setup.sh SH 2013,2014
-./bin/tests/system/geoip/tests.sh SH 2013,2014,2015,2016
-./bin/tests/system/glue/clean.sh SH 2000,2001,2004,2007,2012,2015
+./bin/tests/system/geoip/prereq.sh SH 2013,2014,2016,2018
+./bin/tests/system/geoip/setup.sh SH 2013,2014,2018
+./bin/tests/system/geoip/tests.sh SH 2013,2014,2015,2016,2018
+./bin/tests/system/glue/clean.sh SH 2000,2001,2004,2007,2012,2015,2018
./bin/tests/system/glue/fi.good X 2000,2001
./bin/tests/system/glue/noglue.good X 2000,2001
./bin/tests/system/glue/ns1/cache.in ZONE 2000,2001,2004,2007
./bin/tests/system/glue/ns1/mil.db ZONE 2000,2001,2004,2007
-./bin/tests/system/glue/ns1/named.conf CONF-C 2000,2001,2004,2005,2007,2009
+./bin/tests/system/glue/ns1/named.conf.in CONF-C 2000,2001,2004,2005,2007,2009,2018
./bin/tests/system/glue/ns1/net.db ZONE 2000,2001,2004,2007
./bin/tests/system/glue/ns1/root-servers.nil.db ZONE 2000,2001,2004,2007
./bin/tests/system/glue/ns1/root.db ZONE 2000,2001,2004,2007
-./bin/tests/system/glue/setup.sh SH 2001,2004,2007,2012
-./bin/tests/system/glue/tests.sh SH 2000,2001,2003,2004,2007,2012,2013,2016
+./bin/tests/system/glue/setup.sh SH 2001,2004,2007,2012,2018
+./bin/tests/system/glue/tests.sh SH 2000,2001,2003,2004,2007,2012,2013,2016,2018
./bin/tests/system/glue/xx.good X 2000,2001
./bin/tests/system/glue/yy.good X 2000,2001,2003
./bin/tests/system/gost/clean.sh SH 2010,2012,2014
./bin/tests/system/inline/.gitignore X 2014
./bin/tests/system/inline/checkdsa.sh.in SH 2013,2014
./bin/tests/system/inline/clean.sh SH 2011,2012,2013,2014,2015,2017,2018
-./bin/tests/system/inline/ns1/named.conf CONF-C 2011
+./bin/tests/system/inline/ns1/named.conf.in CONF-C 2011,2018
./bin/tests/system/inline/ns1/root.db.in ZONE 2011,2012,2013,2017
./bin/tests/system/inline/ns1/sign.sh SH 2011,2012,2014
./bin/tests/system/inline/ns2/bits.db.in ZONE 2011
-./bin/tests/system/inline/ns2/named.conf CONF-C 2011,2012,2013,2014,2017
+./bin/tests/system/inline/ns2/named.conf.in CONF-C 2011,2012,2013,2014,2017,2018
./bin/tests/system/inline/ns2/nsec3-loop.db ZONE 2017
./bin/tests/system/inline/ns3/master.db.in ZONE 2011,2012
./bin/tests/system/inline/ns3/master2.db.in ZONE 2011,2012
./bin/tests/system/inline/ns3/master3.db.in ZONE 2012
./bin/tests/system/inline/ns3/master4.db.in ZONE 2012
-./bin/tests/system/inline/ns3/named.conf CONF-C 2011,2012,2013,2015,2017
+./bin/tests/system/inline/ns3/named.conf.in CONF-C 2011,2012,2013,2015,2017,2018
./bin/tests/system/inline/ns3/sign.sh SH 2011,2012,2013,2014,2017
-./bin/tests/system/inline/ns4/named.conf CONF-C 2011
+./bin/tests/system/inline/ns4/named.conf.in CONF-C 2011,2018
./bin/tests/system/inline/ns4/noixfr.db.in ZONE 2011
-./bin/tests/system/inline/ns5/named.conf.post CONF-C 2011
-./bin/tests/system/inline/ns5/named.conf.pre CONF-C 2011
-./bin/tests/system/inline/ns6/named.conf CONF-C 2011
-./bin/tests/system/inline/ns7/named.conf CONF-C 2017
+./bin/tests/system/inline/ns5/named.conf.post CONF-C 2011,2018
+./bin/tests/system/inline/ns5/named.conf.pre CONF-C 2011,2018
+./bin/tests/system/inline/ns6/named.conf.in CONF-C 2011,2018
+./bin/tests/system/inline/ns7/named.conf.in CONF-C 2017,2018
./bin/tests/system/inline/ns7/sign.sh SH 2017
./bin/tests/system/inline/prereq.sh SH 2014
-./bin/tests/system/inline/setup.sh SH 2011,2012,2013,2014,2017
+./bin/tests/system/inline/setup.sh SH 2011,2012,2013,2014,2017,2018
./bin/tests/system/inline/tests.sh SH 2011,2012,2013,2014,2016,2017,2018
-./bin/tests/system/integrity/clean.sh SH 2017
+./bin/tests/system/integrity/clean.sh SH 2017,2018
./bin/tests/system/integrity/ns1/mx-cname.db ZONE 2017
-./bin/tests/system/integrity/ns1/named.conf CONF-C 2017
+./bin/tests/system/integrity/ns1/named.conf.in CONF-C 2017,2018
./bin/tests/system/integrity/ns1/srv-cname.db ZONE 2017
-./bin/tests/system/integrity/tests.sh SH 2017
+./bin/tests/system/integrity/setup.sh SH 2018
+./bin/tests/system/integrity/tests.sh SH 2017,2018
./bin/tests/system/ixfr/ans2/startme X 2011
-./bin/tests/system/ixfr/clean.sh SH 2001,2004,2007,2011,2012,2014,2015
+./bin/tests/system/ixfr/clean.sh SH 2001,2004,2007,2011,2012,2014,2015,2018
./bin/tests/system/ixfr/ns1/.gitignore X 2012
./bin/tests/system/ixfr/ns1/startme X 2012,2013
./bin/tests/system/ixfr/ns3/mytest0.db ZONE 2011
./bin/tests/system/ixfr/ns3/mytest1.db ZONE 2011
./bin/tests/system/ixfr/ns3/mytest2.db ZONE 2011
-./bin/tests/system/ixfr/ns3/named.conf CONF-C 2011,2013,2014
+./bin/tests/system/ixfr/ns3/named.conf.in CONF-C 2011,2013,2014,2018
./bin/tests/system/ixfr/ns3/subtest0.db ZONE 2011
./bin/tests/system/ixfr/ns3/subtest1.db ZONE 2011
-./bin/tests/system/ixfr/ns4/named.conf CONF-C 2011,2013
-./bin/tests/system/ixfr/prereq.sh SH 2001,2004,2007,2012,2014
-./bin/tests/system/ixfr/setup.sh SH 2001,2004,2007,2011,2012,2013,2014
-./bin/tests/system/ixfr/tests.sh SH 2001,2004,2007,2011,2012,2014,2016
+./bin/tests/system/ixfr/ns4/named.conf.in CONF-C 2011,2013,2018
+./bin/tests/system/ixfr/prereq.sh SH 2001,2004,2007,2012,2014,2018
+./bin/tests/system/ixfr/setup.sh SH 2001,2004,2007,2011,2012,2013,2014,2018
+./bin/tests/system/ixfr/tests.sh SH 2001,2004,2007,2011,2012,2014,2016,2018
./bin/tests/system/legacy/build.sh SH 2014
-./bin/tests/system/legacy/clean.sh SH 2014
-./bin/tests/system/legacy/ns1/named1.conf CONF-C 2014
-./bin/tests/system/legacy/ns1/named2.conf CONF-C 2014
+./bin/tests/system/legacy/clean.sh SH 2014,2018
+./bin/tests/system/legacy/ns1/named1.conf.in CONF-C 2014,2018
+./bin/tests/system/legacy/ns1/named2.conf.in CONF-C 2014,2018
./bin/tests/system/legacy/ns1/root.db ZONE 2014
./bin/tests/system/legacy/ns1/trusted.conf X 2014
./bin/tests/system/legacy/ns2/dropedns.db ZONE 2014
-./bin/tests/system/legacy/ns2/named.conf CONF-C 2014
+./bin/tests/system/legacy/ns2/named.conf.in CONF-C 2014,2018
./bin/tests/system/legacy/ns2/named.dropedns X 2014
./bin/tests/system/legacy/ns3/dropedns-notcp.db ZONE 2014
-./bin/tests/system/legacy/ns3/named.conf CONF-C 2014
+./bin/tests/system/legacy/ns3/named.conf.in CONF-C 2014,2018
./bin/tests/system/legacy/ns3/named.dropedns X 2014
./bin/tests/system/legacy/ns3/named.notcp X 2014
./bin/tests/system/legacy/ns4/named.args X 2014
-./bin/tests/system/legacy/ns4/named.conf CONF-C 2014
+./bin/tests/system/legacy/ns4/named.conf.in CONF-C 2014,2018
./bin/tests/system/legacy/ns4/plain.db ZONE 2014
./bin/tests/system/legacy/ns5/named.args X 2014
-./bin/tests/system/legacy/ns5/named.conf CONF-C 2014
+./bin/tests/system/legacy/ns5/named.conf.in CONF-C 2014,2018
./bin/tests/system/legacy/ns5/named.notcp X 2014
./bin/tests/system/legacy/ns5/plain-notcp.db ZONE 2014
./bin/tests/system/legacy/ns6/edns512.db.in ZONE 2014
./bin/tests/system/legacy/ns6/edns512.db.signed X 2014
./bin/tests/system/legacy/ns6/named.args X 2014
-./bin/tests/system/legacy/ns6/named.conf CONF-C 2014
-./bin/tests/system/legacy/ns6/sign.sh SH 2014
+./bin/tests/system/legacy/ns6/named.conf.in CONF-C 2014,2018
+./bin/tests/system/legacy/ns6/sign.sh SH 2014,2018
./bin/tests/system/legacy/ns7/edns512-notcp.db.in ZONE 2014
./bin/tests/system/legacy/ns7/edns512-notcp.db.signed X 2014
./bin/tests/system/legacy/ns7/named.args X 2014
-./bin/tests/system/legacy/ns7/named.conf CONF-C 2014
+./bin/tests/system/legacy/ns7/named.conf.in CONF-C 2014,2018
./bin/tests/system/legacy/ns7/named.notcp X 2014
-./bin/tests/system/legacy/ns7/sign.sh SH 2014
-./bin/tests/system/legacy/setup.sh SH 2014
-./bin/tests/system/legacy/tests.sh SH 2014,2015,2016
-./bin/tests/system/limits/clean.sh SH 2000,2001,2004,2007,2012,2015
+./bin/tests/system/legacy/ns7/sign.sh SH 2014,2018
+./bin/tests/system/legacy/setup.sh SH 2014,2018
+./bin/tests/system/legacy/tests.sh SH 2014,2015,2016,2018
+./bin/tests/system/limits/clean.sh SH 2000,2001,2004,2007,2012,2015,2018
./bin/tests/system/limits/knowngood.dig.out.1000 X 2000,2001
./bin/tests/system/limits/knowngood.dig.out.2000 X 2000,2001
./bin/tests/system/limits/knowngood.dig.out.3000 X 2000,2001
./bin/tests/system/limits/knowngood.dig.out.4000 X 2000,2001
./bin/tests/system/limits/knowngood.dig.out.a-maximum-rrset X 2000,2001
./bin/tests/system/limits/ns1/example.db ZONE 2000,2001,2004,2007
-./bin/tests/system/limits/ns1/named.conf CONF-C 2000,2001,2004,2007
+./bin/tests/system/limits/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2018
./bin/tests/system/limits/ns1/root.db ZONE 2000,2001,2004,2007
-./bin/tests/system/limits/tests.sh SH 2000,2001,2004,2007,2011,2012,2016
-./bin/tests/system/logfileconfig/clean.sh SH 2011,2012,2016
-./bin/tests/system/logfileconfig/ns1/named.dirconf CONF-C 2011,2013
-./bin/tests/system/logfileconfig/ns1/named.pipeconf CONF-C 2011,2013
-./bin/tests/system/logfileconfig/ns1/named.plain CONF-C 2011,2013
-./bin/tests/system/logfileconfig/ns1/named.symconf CONF-C 2011,2013
-./bin/tests/system/logfileconfig/ns1/named.unlimited CONF-C 2016
-./bin/tests/system/logfileconfig/ns1/named.versconf CONF-C 2016
-./bin/tests/system/logfileconfig/ns1/rndc.conf CONF-C 2011,2013,2017
+./bin/tests/system/limits/setup.sh SH 2018
+./bin/tests/system/limits/tests.sh SH 2000,2001,2004,2007,2011,2012,2016,2018
+./bin/tests/system/logfileconfig/clean.sh SH 2011,2012,2016,2018
+./bin/tests/system/logfileconfig/ns1/controls.conf.in CONF-C 2018
+./bin/tests/system/logfileconfig/ns1/named.dirconf CONF-C 2011,2013,2018
+./bin/tests/system/logfileconfig/ns1/named.pipeconf CONF-C 2011,2013,2018
+./bin/tests/system/logfileconfig/ns1/named.plain CONF-C 2011,2013,2018
+./bin/tests/system/logfileconfig/ns1/named.symconf CONF-C 2011,2013,2018
+./bin/tests/system/logfileconfig/ns1/named.unlimited CONF-C 2016,2018
+./bin/tests/system/logfileconfig/ns1/named.versconf CONF-C 2016,2018
+./bin/tests/system/logfileconfig/ns1/rndc.conf.in CONF-C 2011,2013,2017,2018
./bin/tests/system/logfileconfig/ns1/root.db ZONE 2011
-./bin/tests/system/logfileconfig/setup.sh SH 2011,2012,2014
-./bin/tests/system/logfileconfig/tests.sh SH 2011,2012,2013,2016,2017
+./bin/tests/system/logfileconfig/setup.sh SH 2011,2012,2014,2018
+./bin/tests/system/logfileconfig/tests.sh SH 2011,2012,2013,2016,2017,2018
./bin/tests/system/lwresd/Makefile.in MAKE 2000,2001,2002,2004,2007,2009,2012,2014,2015
./bin/tests/system/lwresd/clean.sh SH 2008,2012,2013,2015,2016
./bin/tests/system/lwresd/lwresd1/lwresd.conf CONF-C 2000,2001,2004,2007
./bin/tests/system/lwresd/ns1/root.db ZONE 2000,2001,2004,2007
./bin/tests/system/lwresd/resolv.conf CONF-SH 2000,2001,2004,2007,2012
./bin/tests/system/lwresd/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2016
-./bin/tests/system/masterfile/clean.sh SH 2001,2004,2007,2010,2012,2015
+./bin/tests/system/masterfile/clean.sh SH 2001,2004,2007,2010,2012,2015,2018
./bin/tests/system/masterfile/knowngood.dig.out X 2001,2004,2012
./bin/tests/system/masterfile/ns1/include.db ZONE 2001,2004,2007,2012
-./bin/tests/system/masterfile/ns1/named.conf CONF-C 2001,2004,2007
+./bin/tests/system/masterfile/ns1/named.conf.in CONF-C 2001,2004,2007,2018
./bin/tests/system/masterfile/ns1/sub.db ZONE 2001,2004,2007
./bin/tests/system/masterfile/ns1/ttl1.db ZONE 2001,2004,2007
./bin/tests/system/masterfile/ns1/ttl2.db ZONE 2001,2004,2007
./bin/tests/system/masterfile/ns2/example.db ZONE 2010
-./bin/tests/system/masterfile/ns2/named.conf CONF-C 2010
-./bin/tests/system/masterfile/tests.sh SH 2001,2004,2007,2010,2012,2015,2016
+./bin/tests/system/masterfile/ns2/named.conf.in CONF-C 2010,2018
+./bin/tests/system/masterfile/setup.sh SH 2018
+./bin/tests/system/masterfile/tests.sh SH 2001,2004,2007,2010,2012,2015,2016,2018
./bin/tests/system/masterfile/zone/inheritownerafterinclude.db ZONE 2015
./bin/tests/system/masterfile/zone/inheritownerafterinclude.good X 2015
./bin/tests/system/masterfile/zone/nameservers.db ZONE 2015
-./bin/tests/system/masterformat/clean.sh SH 2005,2007,2011,2012,2013,2014,2015
+./bin/tests/system/masterformat/clean.sh SH 2005,2007,2011,2012,2013,2014,2015,2018
./bin/tests/system/masterformat/ns1/compile.sh SH 2005,2006,2007,2011,2012,2013,2014
./bin/tests/system/masterformat/ns1/example.db ZONE 2005,2007,2014
./bin/tests/system/masterformat/ns1/large.db.in ZONE 2012
-./bin/tests/system/masterformat/ns1/named.conf CONF-C 2005,2007,2011,2012,2013
+./bin/tests/system/masterformat/ns1/named.conf.in CONF-C 2005,2007,2011,2012,2013,2018
./bin/tests/system/masterformat/ns1/signed.db ZONE 2013
./bin/tests/system/masterformat/ns2/formerly-text.db.in ZONE 2011
-./bin/tests/system/masterformat/ns2/named.conf CONF-C 2005,2007,2011,2012
-./bin/tests/system/masterformat/ns3/named.conf CONF-C 2012,2013
+./bin/tests/system/masterformat/ns2/named.conf.in CONF-C 2005,2007,2011,2012,2018
+./bin/tests/system/masterformat/ns3/named.conf.in CONF-C 2012,2013,2018
./bin/tests/system/masterformat/prereq.sh SH 2014
-./bin/tests/system/masterformat/setup.sh SH 2005,2006,2007,2011,2012,2013,2014
-./bin/tests/system/masterformat/tests.sh SH 2005,2007,2011,2012,2013,2014,2016,2017
+./bin/tests/system/masterformat/setup.sh SH 2005,2006,2007,2011,2012,2013,2014,2018
+./bin/tests/system/masterformat/tests.sh SH 2005,2007,2011,2012,2013,2014,2016,2017,2018
./bin/tests/system/metadata/child.db ZONE 2009
./bin/tests/system/metadata/clean.sh SH 2009,2011,2012,2014,2017
./bin/tests/system/metadata/parent.db ZONE 2009
./bin/tests/system/metadata/prereq.sh SH 2009,2012,2014
-./bin/tests/system/metadata/setup.sh SH 2009,2011,2012,2014
-./bin/tests/system/metadata/tests.sh SH 2009,2011,2012,2013,2014,2016,2017
-./bin/tests/system/notify/clean.sh SH 2000,2001,2004,2007,2011,2012,2014,2015
-./bin/tests/system/notify/ns1/named.conf CONF-C 2000,2001,2004,2007
+./bin/tests/system/metadata/setup.sh SH 2009,2011,2012,2014,2018
+./bin/tests/system/metadata/tests.sh SH 2009,2011,2012,2013,2014,2016,2017,2018
+./bin/tests/system/notify/clean.sh SH 2000,2001,2004,2007,2011,2012,2014,2015,2018
+./bin/tests/system/notify/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2018
./bin/tests/system/notify/ns1/root.db ZONE 2000,2001,2004,2007
./bin/tests/system/notify/ns2/example1.db ZONE 2000,2001,2002,2004,2007,2009
./bin/tests/system/notify/ns2/example2.db ZONE 2000,2001,2002,2004,2007,2009
./bin/tests/system/notify/ns2/example3.db ZONE 2000,2001,2002,2004,2007,2009
./bin/tests/system/notify/ns2/example4.db ZONE 2000,2001,2002,2004,2007,2009
./bin/tests/system/notify/ns2/generic.db ZONE 2014
-./bin/tests/system/notify/ns2/named.conf CONF-C 2000,2001,2004,2007,2011,2014,2016
-./bin/tests/system/notify/ns3/named.conf CONF-C 2000,2001,2004,2007
-./bin/tests/system/notify/ns4/named.conf CONF-C 2014
-./bin/tests/system/notify/ns4/named.port X 2014
-./bin/tests/system/notify/ns5/named.conf CONF-C 2015,2017
+./bin/tests/system/notify/ns2/named.conf.in CONF-C 2000,2001,2004,2007,2011,2014,2016,2018
+./bin/tests/system/notify/ns3/named.conf.in CONF-C 2000,2001,2004,2007,2018
+./bin/tests/system/notify/ns4/named.conf.in CONF-C 2014,2018
+./bin/tests/system/notify/ns4/named.port.in X 2014,2018
+./bin/tests/system/notify/ns5/named.conf.in CONF-C 2015,2017,2018
./bin/tests/system/notify/ns5/x21.db ZONE 2015
-./bin/tests/system/notify/setup.sh SH 2000,2001,2004,2007,2012,2014
-./bin/tests/system/notify/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2014,2015,2016
-./bin/tests/system/nslookup/clean.sh SH 2014,2015
-./bin/tests/system/nslookup/ns1/named.conf CONF-C 2014
-./bin/tests/system/nslookup/setup.sh SH 2014
-./bin/tests/system/nslookup/tests.sh SH 2014,2016
-./bin/tests/system/nsupdate/ans4/ans.pl PERL 2017
-./bin/tests/system/nsupdate/clean.sh SH 2000,2001,2004,2007,2009,2010,2011,2012,2014,2015,2016,2017
+./bin/tests/system/notify/setup.sh SH 2000,2001,2004,2007,2012,2014,2018
+./bin/tests/system/notify/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2014,2015,2016,2018
+./bin/tests/system/nslookup/clean.sh SH 2014,2015,2018
+./bin/tests/system/nslookup/ns1/named.conf.in CONF-C 2014,2018
+./bin/tests/system/nslookup/setup.sh SH 2014,2018
+./bin/tests/system/nslookup/tests.sh SH 2014,2016,2018
+./bin/tests/system/nsupdate/ans4/ans.pl PERL 2017,2018
+./bin/tests/system/nsupdate/clean.sh SH 2000,2001,2004,2007,2009,2010,2011,2012,2014,2015,2016,2017,2018
./bin/tests/system/nsupdate/commandlist X 2012
./bin/tests/system/nsupdate/knowngood.ns1.after X 2000,2001,2003,2004,2009
./bin/tests/system/nsupdate/knowngood.ns1.afterstop X 2001,2004
./bin/tests/system/nsupdate/knowngood.ns1.before X 2000,2001,2003,2004,2009
./bin/tests/system/nsupdate/ns1/example1.db ZONE 2000,2001,2002,2004,2007,2009
./bin/tests/system/nsupdate/ns1/max-ttl.db ZONE 2014
-./bin/tests/system/nsupdate/ns1/named.conf CONF-C 2000,2001,2004,2005,2007,2009,2011,2012,2013,2014,2016
+./bin/tests/system/nsupdate/ns1/named.conf.in CONF-C 2000,2001,2004,2005,2007,2009,2011,2012,2013,2014,2016,2018
./bin/tests/system/nsupdate/ns1/sample.db.in ZONE 2016
-./bin/tests/system/nsupdate/ns2/named.conf CONF-C 2000,2001,2004,2007,2011,2013,2016,2017
+./bin/tests/system/nsupdate/ns2/named.conf.in CONF-C 2000,2001,2004,2007,2011,2013,2016,2017,2018
./bin/tests/system/nsupdate/ns2/sample.db.in ZONE 2016
./bin/tests/system/nsupdate/ns3/delegation.test.db.in ZONE 2016
./bin/tests/system/nsupdate/ns3/dnskey.test.db.in ZONE 2011
./bin/tests/system/nsupdate/ns3/example.db.in ZONE 2010
-./bin/tests/system/nsupdate/ns3/named.conf CONF-C 2010,2011,2013,2016
+./bin/tests/system/nsupdate/ns3/named.conf.in CONF-C 2010,2011,2013,2016,2018
./bin/tests/system/nsupdate/ns3/nsec3param.test.db.in ZONE 2010
./bin/tests/system/nsupdate/ns3/sign.sh SH 2010,2011,2012,2014,2016
./bin/tests/system/nsupdate/ns3/too-big.test.db.in ZONE 2016
./bin/tests/system/nsupdate/ns5/local.db.in ZONE 2017
./bin/tests/system/nsupdate/ns5/named.args X 2017
-./bin/tests/system/nsupdate/ns5/named.conf CONF-C 2017
-./bin/tests/system/nsupdate/prereq.sh SH 2014,2015
-./bin/tests/system/nsupdate/setup.sh SH 2000,2001,2004,2007,2009,2010,2011,2012,2014,2016,2017
+./bin/tests/system/nsupdate/ns5/named.conf.in CONF-C 2017,2018
+./bin/tests/system/nsupdate/prereq.sh SH 2014,2015,2018
+./bin/tests/system/nsupdate/setup.sh SH 2000,2001,2004,2007,2009,2010,2011,2012,2014,2016,2017,2018
./bin/tests/system/nsupdate/tests.sh SH 2000,2001,2004,2007,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
-./bin/tests/system/nsupdate/update_test.pl PERL 2000,2001,2004,2007,2012
-./bin/tests/system/nsupdate/verylarge X 2013
+./bin/tests/system/nsupdate/update_test.pl PERL 2000,2001,2004,2007,2012,2018
+./bin/tests/system/nsupdate/verylarge.in X 2013,2018
./bin/tests/system/org.isc.bind.system SH 2010,2012,2013
./bin/tests/system/org.isc.bind.system.plist X 2010
./bin/tests/system/packet.pl PERL 2011,2012
-./bin/tests/system/pending/clean.sh SH 2009,2012,2014
-./bin/tests/system/pending/ns1/named.conf CONF-C 2009
+./bin/tests/system/pending/clean.sh SH 2009,2012,2014,2018
+./bin/tests/system/pending/ns1/named.conf.in CONF-C 2009,2018
./bin/tests/system/pending/ns1/root.db.in ZONE 2009,2010
./bin/tests/system/pending/ns1/sign.sh SH 2009,2010,2012,2014,2016
./bin/tests/system/pending/ns2/example.com.db.in ZONE 2009,2010
./bin/tests/system/pending/ns2/example.db.in ZONE 2009,2010
./bin/tests/system/pending/ns2/forgery.db ZONE 2010
-./bin/tests/system/pending/ns2/named.conf CONF-C 2009,2010,2016
+./bin/tests/system/pending/ns2/named.conf.in CONF-C 2009,2010,2016,2018
./bin/tests/system/pending/ns2/sign.sh SH 2009,2010,2012,2014
./bin/tests/system/pending/ns3/hostile.db ZONE 2009
./bin/tests/system/pending/ns3/mail.example.db ZONE 2009
-./bin/tests/system/pending/ns3/named.conf CONF-C 2009
-./bin/tests/system/pending/ns4/named.conf CONF-C 2009
+./bin/tests/system/pending/ns3/named.conf.in CONF-C 2009,2018
+./bin/tests/system/pending/ns4/named.conf.in CONF-C 2009,2018
./bin/tests/system/pending/prereq.sh SH 2009,2012,2014
-./bin/tests/system/pending/setup.sh SH 2009,2012,2014
-./bin/tests/system/pending/tests.sh SH 2009,2010,2012,2016
+./bin/tests/system/pending/setup.sh SH 2009,2012,2014,2018
+./bin/tests/system/pending/tests.sh SH 2009,2010,2012,2016,2018
./bin/tests/system/pkcs11/clean.sh SH 2010,2012,2014,2017
./bin/tests/system/pkcs11/ns1/example.db.in ZONE 2010
./bin/tests/system/pkcs11/ns1/named.conf CONF-C 2010,2013,2014,2017
./bin/tests/system/pkcs11ssl/tests.sh SH 2014,2016
./bin/tests/system/pkcs11ssl/usepkcs11 X 2014
./bin/tests/system/reclimit/README TXT.BRIEF 2014,2017
-./bin/tests/system/reclimit/ans2/ans.pl PERL 2014,2015,2016,2017
-./bin/tests/system/reclimit/ans7/ans.pl PERL 2014
-./bin/tests/system/reclimit/clean.sh SH 2014
-./bin/tests/system/reclimit/ns1/named.conf CONF-C 2014
+./bin/tests/system/reclimit/ans2/ans.pl PERL 2014,2015,2016,2017,2018
+./bin/tests/system/reclimit/ans7/ans.pl PERL 2014,2018
+./bin/tests/system/reclimit/clean.sh SH 2014,2018
+./bin/tests/system/reclimit/ns1/named.conf.in CONF-C 2014,2018
./bin/tests/system/reclimit/ns1/root.db ZONE 2014,2017
./bin/tests/system/reclimit/ns3/.gitignore X 2014
./bin/tests/system/reclimit/ns3/hints.db ZONE 2014
-./bin/tests/system/reclimit/ns3/named1.conf CONF-C 2014
-./bin/tests/system/reclimit/ns3/named2.conf CONF-C 2014
-./bin/tests/system/reclimit/ns3/named3.conf CONF-C 2014
-./bin/tests/system/reclimit/ns3/named4.conf CONF-C 2014
-./bin/tests/system/reclimit/prereq.sh SH 2015,2017
-./bin/tests/system/reclimit/setup.sh SH 2014
-./bin/tests/system/reclimit/tests.sh SH 2014,2015,2016,2017
-./bin/tests/system/redirect/clean.sh SH 2011,2012,2013,2014,2015
+./bin/tests/system/reclimit/ns3/named1.conf.in CONF-C 2014,2018
+./bin/tests/system/reclimit/ns3/named2.conf.in CONF-C 2014,2018
+./bin/tests/system/reclimit/ns3/named3.conf.in CONF-C 2014,2018
+./bin/tests/system/reclimit/ns3/named4.conf.in CONF-C 2014,2018
+./bin/tests/system/reclimit/prereq.sh SH 2015,2017,2018
+./bin/tests/system/reclimit/setup.sh SH 2014,2018
+./bin/tests/system/reclimit/tests.sh SH 2014,2015,2016,2017,2018
+./bin/tests/system/redirect/clean.sh SH 2011,2012,2013,2014,2015,2018
./bin/tests/system/redirect/conf/bad1.conf CONF-C 2011,2016
./bin/tests/system/redirect/conf/bad2.conf CONF-C 2011,2016
./bin/tests/system/redirect/conf/bad3.conf CONF-C 2011,2016
./bin/tests/system/redirect/conf/good3.conf CONF-C 2011
./bin/tests/system/redirect/conf/good4.conf CONF-C 2011
./bin/tests/system/redirect/ns1/example.db ZONE 2011
-./bin/tests/system/redirect/ns1/named.conf CONF-C 2011
+./bin/tests/system/redirect/ns1/named.conf.in CONF-C 2011,2018
./bin/tests/system/redirect/ns1/redirect.db ZONE 2011
./bin/tests/system/redirect/ns1/root.db ZONE 2011
./bin/tests/system/redirect/ns1/sign.sh SH 2011,2012,2014
./bin/tests/system/redirect/ns2/example.db.in ZONE 2013
-./bin/tests/system/redirect/ns2/named.conf CONF-C 2011,2013
+./bin/tests/system/redirect/ns2/named.conf.in CONF-C 2011,2013,2018
./bin/tests/system/redirect/ns2/redirect.db.in ZONE 2011.2013,2013
./bin/tests/system/redirect/prereq.sh SH 2014
-./bin/tests/system/redirect/setup.sh SH 2011,2012,2013,2014
-./bin/tests/system/redirect/tests.sh SH 2011,2012,2013,2014,2016
-./bin/tests/system/resolver/ans2/ans.pl PERL 2000,2001,2004,2007,2009,2010,2012
-./bin/tests/system/resolver/ans3/ans.pl PERL 2000,2001,2004,2007,2009,2012
-./bin/tests/system/resolver/ans8/ans.pl PERL 2017
-./bin/tests/system/resolver/clean.sh SH 2008,2009,2010,2011,2012,2013,2014,2015,2016
-./bin/tests/system/resolver/ns1/named.conf CONF-C 2000,2001,2004,2007,2009,2013,2014,2015
+./bin/tests/system/redirect/setup.sh SH 2011,2012,2013,2014,2018
+./bin/tests/system/redirect/tests.sh SH 2011,2012,2013,2014,2016,2018
+./bin/tests/system/resolver/ans2/ans.pl PERL 2000,2001,2004,2007,2009,2010,2012,2018
+./bin/tests/system/resolver/ans3/ans.pl PERL 2000,2001,2004,2007,2009,2012,2018
+./bin/tests/system/resolver/ans8/ans.pl PERL 2017,2018
+./bin/tests/system/resolver/clean.sh SH 2008,2009,2010,2011,2012,2013,2014,2015,2016,2018
+./bin/tests/system/resolver/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2009,2013,2014,2015,2018
./bin/tests/system/resolver/ns1/root.hint ZONE 2000,2001,2004,2007
./bin/tests/system/resolver/ns4/broken.db ZONE 2012
./bin/tests/system/resolver/ns4/child.server.db ZONE 2011
./bin/tests/system/resolver/ns4/moves.db ZONE 2011
-./bin/tests/system/resolver/ns4/named.conf CONF-C 2010,2011,2012,2013,2015
+./bin/tests/system/resolver/ns4/named.conf.in CONF-C 2010,2011,2012,2013,2015,2018
./bin/tests/system/resolver/ns4/named.noaa TXT.BRIEF 2010
./bin/tests/system/resolver/ns4/root.db ZONE 2010,2014,2015,2016,2017
./bin/tests/system/resolver/ns4/tld1.db ZONE 2012,2014
./bin/tests/system/resolver/ns4/tld2.db ZONE 2012,2014
./bin/tests/system/resolver/ns5/child.server.db ZONE 2011
./bin/tests/system/resolver/ns5/moves.db ZONE 2011
-./bin/tests/system/resolver/ns5/named.conf CONF-C 2010,2011,2013,2014,2015,2016
+./bin/tests/system/resolver/ns5/named.conf.in CONF-C 2010,2011,2013,2014,2015,2016,2018
./bin/tests/system/resolver/ns5/root.hint ZONE 2010
./bin/tests/system/resolver/ns6/broken.db ZONE 2012
./bin/tests/system/resolver/ns6/delegation-only.db ZONE 2015
./bin/tests/system/resolver/ns6/example.net.db.in ZONE 2010,2014,2016
./bin/tests/system/resolver/ns6/keygen.sh SH 2010,2012,2014,2016,2017
./bin/tests/system/resolver/ns6/moves.db ZONE 2011
-./bin/tests/system/resolver/ns6/named.conf CONF-C 2010,2012,2013,2014,2015,2016
+./bin/tests/system/resolver/ns6/named.conf.in CONF-C 2010,2012,2013,2014,2015,2016,2018
./bin/tests/system/resolver/ns6/root.db ZONE 2010,2011
./bin/tests/system/resolver/ns6/to-be-removed.tld.db.in ZONE 2012
./bin/tests/system/resolver/ns7/all-cnames.db ZONE 2014
./bin/tests/system/resolver/ns7/named.args X 2011,2012
-./bin/tests/system/resolver/ns7/named1.conf CONF-C 2010,2011,2013,2014,2016
-./bin/tests/system/resolver/ns7/named2.conf CONF-C 2013,2014,2016
+./bin/tests/system/resolver/ns7/named1.conf.in CONF-C 2010,2011,2013,2014,2016,2018
+./bin/tests/system/resolver/ns7/named2.conf.in CONF-C 2013,2014,2016,2018
./bin/tests/system/resolver/ns7/root.hint ZONE 2010
./bin/tests/system/resolver/ns7/server.db.in ZONE 2011
-./bin/tests/system/resolver/prereq.sh SH 2000,2001,2004,2007,2012,2014
-./bin/tests/system/resolver/setup.sh SH 2010,2011,2012,2013,2014
-./bin/tests/system/resolver/tests.sh SH 2000,2001,2004,2007,2009,2010,2011,2012,2013,2014,2015,2016,2017
+./bin/tests/system/resolver/prereq.sh SH 2000,2001,2004,2007,2012,2014,2018
+./bin/tests/system/resolver/setup.sh SH 2010,2011,2012,2013,2014,2018
+./bin/tests/system/resolver/tests.sh SH 2000,2001,2004,2007,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
./bin/tests/system/rndc/.gitignore X 2015
-./bin/tests/system/rndc/clean.sh SH 2011,2012,2013,2014,2015,2017
+./bin/tests/system/rndc/clean.sh SH 2011,2012,2013,2014,2015,2017,2018
./bin/tests/system/rndc/ns2/incl.db ZONE 2013
-./bin/tests/system/rndc/ns2/named.conf CONF-C 2011,2012,2013
+./bin/tests/system/rndc/ns2/named.conf.in CONF-C 2011,2012,2013,2018
./bin/tests/system/rndc/ns2/secondkey.conf CONF-C 2012,2013
-./bin/tests/system/rndc/ns3/named.conf CONF-C 2012,2013
+./bin/tests/system/rndc/ns3/named.conf.in CONF-C 2012,2013,2018
./bin/tests/system/rndc/ns4/.gitignore X 2016
-./bin/tests/system/rndc/ns4/named.conf.in CONF-C 2013,2015
-./bin/tests/system/rndc/setup.sh SH 2011,2012,2013,2014
+./bin/tests/system/rndc/ns4/named.conf.in CONF-C 2013,2015,2018
+./bin/tests/system/rndc/setup.sh SH 2011,2012,2013,2014,2018
./bin/tests/system/rndc/tests.sh SH 2011,2012,2013,2014,2015,2016,2017,2018
-./bin/tests/system/rpz/clean.sh SH 2011,2012,2013,2014
-./bin/tests/system/rpz/ns1/named.conf CONF-C 2011,2013
-./bin/tests/system/rpz/ns1/root.db ZONE 2011,2012,2013
-./bin/tests/system/rpz/ns2/base-tld2s.db ZONE 2012,2013
-./bin/tests/system/rpz/ns2/bl.tld2.db.in ZONE 2013
-./bin/tests/system/rpz/ns2/blv2.tld2.db.in ZONE 2013
-./bin/tests/system/rpz/ns2/blv3.tld2.db.in ZONE 2013
-./bin/tests/system/rpz/ns2/hints ZONE 2011,2013
-./bin/tests/system/rpz/ns2/named.conf CONF-C 2011,2012,2013
-./bin/tests/system/rpz/ns2/tld2.db ZONE 2011,2012,2013
-./bin/tests/system/rpz/ns3/base.db ZONE 2011,2012,2013,2016
+./bin/tests/system/rpz/clean.sh SH 2011,2012,2013,2014,2018
+./bin/tests/system/rpz/ns1/named.conf.in CONF-C 2011,2013,2018
+./bin/tests/system/rpz/ns1/root.db ZONE 2011,2012,2013,2018
+./bin/tests/system/rpz/ns2/base-tld2s.db ZONE 2012,2013,2018
+./bin/tests/system/rpz/ns2/bl.tld2.db.in ZONE 2013,2018
+./bin/tests/system/rpz/ns2/blv2.tld2.db.in ZONE 2013,2018
+./bin/tests/system/rpz/ns2/blv3.tld2.db.in ZONE 2013,2018
+./bin/tests/system/rpz/ns2/hints ZONE 2011,2013,2018
+./bin/tests/system/rpz/ns2/named.conf.in CONF-C 2011,2012,2013,2018
+./bin/tests/system/rpz/ns2/tld2.db ZONE 2011,2012,2013,2018
+./bin/tests/system/rpz/ns3/base.db ZONE 2011,2012,2013,2016,2018
./bin/tests/system/rpz/ns3/crash1 X 2011,2013
./bin/tests/system/rpz/ns3/crash2 X 2011,2012,2013
-./bin/tests/system/rpz/ns3/hints ZONE 2011,2013
-./bin/tests/system/rpz/ns3/named.conf CONF-C 2011,2012,2013
-./bin/tests/system/rpz/ns4/hints ZONE 2011,2013
-./bin/tests/system/rpz/ns4/named.conf CONF-C 2011,2012,2013
-./bin/tests/system/rpz/ns4/tld4.db ZONE 2011,2012,2013
-./bin/tests/system/rpz/ns5/empty.db.in ZONE 2014
-./bin/tests/system/rpz/ns5/hints ZONE 2011,2012,2013
+./bin/tests/system/rpz/ns3/hints ZONE 2011,2013,2018
+./bin/tests/system/rpz/ns3/named.conf.in CONF-C 2011,2012,2013,2018
+./bin/tests/system/rpz/ns4/hints ZONE 2011,2013,2018
+./bin/tests/system/rpz/ns4/named.conf.in CONF-C 2011,2012,2013,2018
+./bin/tests/system/rpz/ns4/tld4.db ZONE 2011,2012,2013,2018
+./bin/tests/system/rpz/ns5/empty.db.in ZONE 2014,2018
+./bin/tests/system/rpz/ns5/hints ZONE 2011,2012,2013,2018
./bin/tests/system/rpz/ns5/named.args X 2013
-./bin/tests/system/rpz/ns5/named.conf CONF-C 2012,2013,2014
-./bin/tests/system/rpz/ns5/tld5.db ZONE 2013
-./bin/tests/system/rpz/ns6/hints ZONE 2014
-./bin/tests/system/rpz/ns6/named.conf CONF-C 2014
-./bin/tests/system/rpz/ns7/hints ZONE 2014
-./bin/tests/system/rpz/ns7/named.conf CONF-C 2014
-./bin/tests/system/rpz/prereq.sh SH 2014
-./bin/tests/system/rpz/qperf.sh SH 2012,2013
-./bin/tests/system/rpz/setup.sh SH 2011,2012,2013,2014,2016
-./bin/tests/system/rpz/test1 ZONE 2011,2012,2013
-./bin/tests/system/rpz/test2 ZONE 2011,2012,2013
-./bin/tests/system/rpz/test3 ZONE 2011,2013
-./bin/tests/system/rpz/test4 ZONE 2011,2013
-./bin/tests/system/rpz/test4a ZONE 2013
-./bin/tests/system/rpz/test5 ZONE 2011,2012,2013
-./bin/tests/system/rpz/test6 ZONE 2013
-./bin/tests/system/rpz/tests.sh SH 2011,2012,2013,2014,2015,2016,2017
-./bin/tests/system/rpzrecurse/.gitignore X 2015
+./bin/tests/system/rpz/ns5/named.conf.in CONF-C 2012,2013,2014,2018
+./bin/tests/system/rpz/ns5/tld5.db ZONE 2013,2018
+./bin/tests/system/rpz/ns6/hints ZONE 2014,2018
+./bin/tests/system/rpz/ns6/named.conf.in CONF-C 2014,2018
+./bin/tests/system/rpz/ns7/hints ZONE 2014,2018
+./bin/tests/system/rpz/ns7/named.conf.in CONF-C 2014,2018
+./bin/tests/system/rpz/prereq.sh SH 2014,2018
+./bin/tests/system/rpz/qperf.sh SH 2012,2013,2018
+./bin/tests/system/rpz/setup.sh SH 2011,2012,2013,2014,2016,2018
+./bin/tests/system/rpz/test1 ZONE 2011,2012,2013,2018
+./bin/tests/system/rpz/test2 ZONE 2011,2012,2013,2018
+./bin/tests/system/rpz/test3 ZONE 2011,2013,2018
+./bin/tests/system/rpz/test4 ZONE 2011,2013,2018
+./bin/tests/system/rpz/test4a ZONE 2013,2018
+./bin/tests/system/rpz/test5 ZONE 2011,2012,2013,2018
+./bin/tests/system/rpz/test6 ZONE 2013,2018
+./bin/tests/system/rpz/tests.sh SH 2011,2012,2013,2014,2015,2016,2017,2018
+./bin/tests/system/rpzrecurse/.gitignore X 2015,2018
./bin/tests/system/rpzrecurse/README TXT.BRIEF 2015
-./bin/tests/system/rpzrecurse/clean.sh SH 2015
+./bin/tests/system/rpzrecurse/clean.sh SH 2015,2018
./bin/tests/system/rpzrecurse/ns1/db.l0 ZONE 2015
./bin/tests/system/rpzrecurse/ns1/db.l1.l0 ZONE 2015
./bin/tests/system/rpzrecurse/ns1/example.db ZONE 2015
-./bin/tests/system/rpzrecurse/ns1/named.conf CONF-C 2015
-./bin/tests/system/rpzrecurse/ns1/root.db ZONE 2015
+./bin/tests/system/rpzrecurse/ns1/named.conf.in CONF-C 2018
./bin/tests/system/rpzrecurse/ns1/test1.example.net.db ZONE 2015
./bin/tests/system/rpzrecurse/ns1/test2.example.net.db ZONE 2015
./bin/tests/system/rpzrecurse/ns2/.gitignore X 2015
./bin/tests/system/rpzrecurse/ns2/db.wildcard3 ZONE 2015
./bin/tests/system/rpzrecurse/ns2/named.clientip.conf CONF-C 2015
./bin/tests/system/rpzrecurse/ns2/named.clientip2.conf CONF-C 2016
-./bin/tests/system/rpzrecurse/ns2/named.conf.header CONF-C 2015
+./bin/tests/system/rpzrecurse/ns2/named.conf.header.in CONF-C 2015,2018
./bin/tests/system/rpzrecurse/ns2/named.default.conf CONF-C 2015
./bin/tests/system/rpzrecurse/ns2/named.wildcard1.conf CONF-C 2015
./bin/tests/system/rpzrecurse/ns2/named.wildcard2.conf CONF-C 2015
./bin/tests/system/rpzrecurse/ns2/named.wildcard3.conf CONF-C 2015
./bin/tests/system/rpzrecurse/ns2/root.hint ZONE 2015
./bin/tests/system/rpzrecurse/prereq.sh SH 2015,2016
-./bin/tests/system/rpzrecurse/setup.sh SH 2015
+./bin/tests/system/rpzrecurse/setup.sh SH 2015,2018
./bin/tests/system/rpzrecurse/testgen.pl PERL 2015
./bin/tests/system/rpzrecurse/tests.sh SH 2015,2016,2018
./bin/tests/system/rrchecker/classlist.good X 2013
./bin/tests/system/rrchecker/clean.sh SH 2013,2017
./bin/tests/system/rrchecker/privatelist.good X 2013
-./bin/tests/system/rrchecker/tests.sh SH 2013,2014,2015,2016,2017
+./bin/tests/system/rrchecker/tests.sh SH 2013,2014,2015,2016,2017,2018
./bin/tests/system/rrchecker/typelist.good X 2013,2014,2015,2016,2017
./bin/tests/system/rrl/.gitignore X 2013,2014
-./bin/tests/system/rrl/clean.sh SH 2012,2013,2016
-./bin/tests/system/rrl/ns1/named.conf CONF-C 2012,2013
+./bin/tests/system/rrl/clean.sh SH 2012,2013,2016,2018
+./bin/tests/system/rrl/ns1/named.conf.in CONF-C 2012,2013,2018
./bin/tests/system/rrl/ns1/root.db ZONE 2012,2013
./bin/tests/system/rrl/ns2/hints ZONE 2012,2013
-./bin/tests/system/rrl/ns2/named.conf CONF-C 2012,2013
+./bin/tests/system/rrl/ns2/named.conf.in CONF-C 2012,2013,2018
./bin/tests/system/rrl/ns2/tld2.db ZONE 2012,2013
./bin/tests/system/rrl/ns3/hints ZONE 2012,2013
-./bin/tests/system/rrl/ns3/named.conf CONF-C 2012,2013
+./bin/tests/system/rrl/ns3/named.conf.in CONF-C 2012,2013,2018
./bin/tests/system/rrl/ns3/tld3.db ZONE 2012,2013
-./bin/tests/system/rrl/setup.sh SH 2012,2013
-./bin/tests/system/rrl/tests.sh SH 2012,2013,2015,2016
-./bin/tests/system/rrsetorder/clean.sh SH 2006,2007,2008,2011,2012
+./bin/tests/system/rrl/setup.sh SH 2012,2013,2018
+./bin/tests/system/rrl/tests.sh SH 2012,2013,2015,2016,2018
+./bin/tests/system/rrsetorder/clean.sh SH 2006,2007,2008,2011,2012,2018
./bin/tests/system/rrsetorder/dig.out.fixed.good X 2006
./bin/tests/system/rrsetorder/dig.out.random.good1 X 2006
./bin/tests/system/rrsetorder/dig.out.random.good10 X 2006
./bin/tests/system/rrsetorder/dig.out.random.good7 X 2006
./bin/tests/system/rrsetorder/dig.out.random.good8 X 2006
./bin/tests/system/rrsetorder/dig.out.random.good9 X 2006
-./bin/tests/system/rrsetorder/ns1/named.conf CONF-C 2006,2007,2013
+./bin/tests/system/rrsetorder/ns1/named.conf.in CONF-C 2006,2007,2013,2018
./bin/tests/system/rrsetorder/ns1/root.db ZONE 2006,2007,2012
-./bin/tests/system/rrsetorder/ns2/named.conf CONF-C 2006,2007
-./bin/tests/system/rrsetorder/ns3/named.conf CONF-C 2006,2007
-./bin/tests/system/rrsetorder/ns4/named.conf CONF-C 2015
-./bin/tests/system/rrsetorder/tests.sh SH 2006,2007,2008,2011,2012,2014,2015,2016
+./bin/tests/system/rrsetorder/ns2/named.conf.in CONF-C 2006,2007,2018
+./bin/tests/system/rrsetorder/ns3/named.conf.in CONF-C 2006,2007,2018
+./bin/tests/system/rrsetorder/ns4/named.conf.in CONF-C 2015,2018
+./bin/tests/system/rrsetorder/setup.sh SH 2018
+./bin/tests/system/rrsetorder/tests.sh SH 2006,2007,2008,2011,2012,2014,2015,2016,2018
./bin/tests/system/rsabigexponent/.gitignore X 2013
./bin/tests/system/rsabigexponent/Makefile.in MAKE 2012,2014,2015
./bin/tests/system/rsabigexponent/bigkey.c C 2012,2014,2015
-./bin/tests/system/rsabigexponent/clean.sh SH 2012,2014,2016
+./bin/tests/system/rsabigexponent/clean.sh SH 2012,2014,2016,2018
./bin/tests/system/rsabigexponent/conf/bad01.conf CONF-C 2012
./bin/tests/system/rsabigexponent/conf/bad02.conf CONF-C 2012
./bin/tests/system/rsabigexponent/conf/bad03.conf CONF-C 2012
./bin/tests/system/rsabigexponent/conf/good01.conf CONF-C 2012
./bin/tests/system/rsabigexponent/conf/good02.conf CONF-C 2012
./bin/tests/system/rsabigexponent/conf/good03.conf CONF-C 2012
-./bin/tests/system/rsabigexponent/ns1/named.conf CONF-C 2012
+./bin/tests/system/rsabigexponent/ns1/named.conf.in CONF-C 2012,2018
./bin/tests/system/rsabigexponent/ns1/root.db.in ZONE 2012
./bin/tests/system/rsabigexponent/ns1/sign.sh SH 2012,2014,2016
./bin/tests/system/rsabigexponent/ns2/Xexample.+005+05896.key X 2012
./bin/tests/system/rsabigexponent/ns2/dsset-example.in X 2012
./bin/tests/system/rsabigexponent/ns2/example.db.bad ZONE 2012
./bin/tests/system/rsabigexponent/ns2/example.db.in ZONE 2012
-./bin/tests/system/rsabigexponent/ns2/named.conf CONF-C 2012
+./bin/tests/system/rsabigexponent/ns2/named.conf.in CONF-C 2012,2018
./bin/tests/system/rsabigexponent/ns2/sign.sh SH 2012,2014
-./bin/tests/system/rsabigexponent/ns3/named.conf CONF-C 2012
-./bin/tests/system/rsabigexponent/prereq.sh SH 2012,2014,2016
-./bin/tests/system/rsabigexponent/setup.sh SH 2012,2014
-./bin/tests/system/rsabigexponent/tests.sh SH 2012,2016
-./bin/tests/system/run.sh SH 2000,2001,2004,2007,2010,2012,2014,2015,2016,2017
-./bin/tests/system/runall.sh SH 2000,2001,2004,2007,2010,2011,2012,2014,2015
-./bin/tests/system/runtime/clean.sh SH 2017
-./bin/tests/system/runtime/ns2/named-alt1.conf CONF-C 2017
-./bin/tests/system/runtime/ns2/named-alt2.conf CONF-C 2017
-./bin/tests/system/runtime/ns2/named-alt3.conf CONF-C 2017
-./bin/tests/system/runtime/ns2/named-alt4.conf CONF-C 2017
-./bin/tests/system/runtime/ns2/named-alt5.conf CONF-C 2017
-./bin/tests/system/runtime/ns2/named-alt6.conf CONF-C 2017
-./bin/tests/system/runtime/ns2/named1.conf CONF-C 2017
-./bin/tests/system/runtime/setup.sh SH 2017
-./bin/tests/system/runtime/tests.sh SH 2017
+./bin/tests/system/rsabigexponent/ns3/named.conf.in CONF-C 2012,2018
+./bin/tests/system/rsabigexponent/prereq.sh SH 2012,2014,2016,2018
+./bin/tests/system/rsabigexponent/setup.sh SH 2012,2014,2018
+./bin/tests/system/rsabigexponent/tests.sh SH 2012,2016,2018
+./bin/tests/system/run.sh SH 2000,2001,2004,2007,2010,2012,2014,2015,2016,2017,2018
+./bin/tests/system/runall.sh SH 2000,2001,2004,2007,2010,2011,2012,2014,2015,2018
+./bin/tests/system/runsequential.sh SH 2018
+./bin/tests/system/runtime/clean.sh SH 2017,2018
+./bin/tests/system/runtime/ns2/named-alt1.conf.in CONF-C 2017,2018
+./bin/tests/system/runtime/ns2/named-alt2.conf.in CONF-C 2017,2018
+./bin/tests/system/runtime/ns2/named-alt3.conf.in CONF-C 2017,2018
+./bin/tests/system/runtime/ns2/named-alt4.conf.in CONF-C 2017,2018
+./bin/tests/system/runtime/ns2/named-alt5.conf.in CONF-C 2017,2018
+./bin/tests/system/runtime/ns2/named-alt6.conf.in CONF-C 2017,2018
+./bin/tests/system/runtime/ns2/named1.conf.in CONF-C 2017,2018
+./bin/tests/system/runtime/setup.sh SH 2017,2018
+./bin/tests/system/runtime/tests.sh SH 2017,2018
./bin/tests/system/send.pl PERL 2001,2004,2007,2011,2012
./bin/tests/system/setup.sh SH 2000,2001,2004,2007,2012,2014
./bin/tests/system/smartsign/child.db ZONE 2010
./bin/tests/system/smartsign/parent.db ZONE 2010
./bin/tests/system/smartsign/prereq.sh SH 2010,2012,2014
./bin/tests/system/smartsign/setup.sh SH 2010,2012,2014
-./bin/tests/system/smartsign/tests.sh SH 2010,2011,2012,2014,2016,2017
-./bin/tests/system/sortlist/clean.sh SH 2000,2001,2004,2007,2009,2012,2015
+./bin/tests/system/smartsign/tests.sh SH 2010,2011,2012,2014,2016,2017,2018
+./bin/tests/system/sortlist/clean.sh SH 2000,2001,2004,2007,2009,2012,2015,2018
./bin/tests/system/sortlist/ns1/example.db ZONE 2000,2001,2004,2007
-./bin/tests/system/sortlist/ns1/named.conf CONF-C 2000,2001,2004,2007
+./bin/tests/system/sortlist/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2018
./bin/tests/system/sortlist/ns1/root.db ZONE 2000,2001,2004,2007
-./bin/tests/system/sortlist/tests.sh SH 2000,2001,2004,2007,2012,2016
-./bin/tests/system/spf/clean.sh SH 2013
-./bin/tests/system/spf/ns1/named.conf CONF-C 2013
+./bin/tests/system/sortlist/setup.sh SH 2018
+./bin/tests/system/sortlist/tests.sh SH 2000,2001,2004,2007,2012,2016,2018
+./bin/tests/system/spf/clean.sh SH 2013,2018
+./bin/tests/system/spf/ns1/named.conf.in CONF-C 2013,2018
./bin/tests/system/spf/ns1/spf.db ZONE 2013
-./bin/tests/system/spf/tests.sh SH 2013,2014,2016
-./bin/tests/system/start.pl SH 2001,2004,2005,2006,2007,2008,2010,2011,2012,2013,2014,2015,2016,2017
+./bin/tests/system/spf/setup.sh SH 2018
+./bin/tests/system/spf/tests.sh SH 2013,2014,2016,2018
+./bin/tests/system/start.pl SH 2001,2004,2005,2006,2007,2008,2010,2011,2012,2013,2014,2015,2016,2017,2018
./bin/tests/system/start.sh SH 2000,2001,2004,2007,2012
-./bin/tests/system/staticstub/clean.sh SH 2010,2012,2014,2015
+./bin/tests/system/staticstub/clean.sh SH 2010,2012,2014,2015,2018
./bin/tests/system/staticstub/conf/bad01.conf CONF-C 2010
./bin/tests/system/staticstub/conf/bad02.conf CONF-C 2010
./bin/tests/system/staticstub/conf/bad03.conf CONF-C 2010
./bin/tests/system/staticstub/conf/good04.conf CONF-C 2010
./bin/tests/system/staticstub/conf/good05.conf CONF-C 2010
./bin/tests/system/staticstub/knowngood.dig.out.rec X 2010,2013
-./bin/tests/system/staticstub/ns1/named.conf CONF-C 2010
+./bin/tests/system/staticstub/ns1/named.conf.in CONF-C 2010,2018
./bin/tests/system/staticstub/ns1/root.db ZONE 2010
-./bin/tests/system/staticstub/ns2/named.conf.in CONF-C 2010,2015
+./bin/tests/system/staticstub/ns2/named.conf.in CONF-C 2010,2015,2018
./bin/tests/system/staticstub/ns3/example.db.in ZONE 2010
./bin/tests/system/staticstub/ns3/example.org.db ZONE 2010
-./bin/tests/system/staticstub/ns3/named.conf.in CONF-C 2010,2013,2015
+./bin/tests/system/staticstub/ns3/named.conf.in CONF-C 2010,2013,2015,2018
./bin/tests/system/staticstub/ns3/sign.sh SH 2010,2012,2014,2015,2016
./bin/tests/system/staticstub/ns3/undelegated.db.in ZONE 2015
./bin/tests/system/staticstub/ns4/example.com.db ZONE 2010
./bin/tests/system/staticstub/ns4/example.info.db ZONE 2010
./bin/tests/system/staticstub/ns4/example.org.db ZONE 2010
-./bin/tests/system/staticstub/ns4/named.conf CONF-C 2010
+./bin/tests/system/staticstub/ns4/named.conf.in CONF-C 2010,2018
./bin/tests/system/staticstub/ns4/sign.sh SH 2010,2012,2014
./bin/tests/system/staticstub/ns4/sub.example.db.in ZONE 2010
./bin/tests/system/staticstub/prereq.sh SH 2014
-./bin/tests/system/staticstub/setup.sh SH 2010,2012,2014
-./bin/tests/system/staticstub/tests.sh SH 2010,2011,2012,2013,2015,2016
-./bin/tests/system/statistics/ans4/ans.pl PERL 2012
-./bin/tests/system/statistics/clean.sh SH 2012,2015
-./bin/tests/system/statistics/ns1/named.conf CONF-C 2012,2015
+./bin/tests/system/staticstub/setup.sh SH 2010,2012,2014,2018
+./bin/tests/system/staticstub/tests.sh SH 2010,2011,2012,2013,2015,2016,2018
+./bin/tests/system/statistics/ans4/ans.pl PERL 2012,2018
+./bin/tests/system/statistics/clean.sh SH 2012,2015,2018
+./bin/tests/system/statistics/ns1/named.conf.in CONF-C 2012,2015,2018
./bin/tests/system/statistics/ns1/root.db ZONE 2012
./bin/tests/system/statistics/ns1/zone.db ZONE 2015
./bin/tests/system/statistics/ns2/example.db ZONE 2012
./bin/tests/system/statistics/ns2/internal.db ZONE 2012
-./bin/tests/system/statistics/ns2/named.conf CONF-C 2012
+./bin/tests/system/statistics/ns2/named.conf.in CONF-C 2012,2018
./bin/tests/system/statistics/ns3/internal.db ZONE 2012
-./bin/tests/system/statistics/ns3/named.conf CONF-C 2012,2013
+./bin/tests/system/statistics/ns3/named.conf.in CONF-C 2012,2013,2018
./bin/tests/system/statistics/ns3/root.hint ZONE 2012
-./bin/tests/system/statistics/prereq.sh SH 2012,2014
-./bin/tests/system/statistics/tests.sh SH 2012,2015,2016
-./bin/tests/system/statschannel/clean.sh SH 2015
+./bin/tests/system/statistics/prereq.sh SH 2012,2014,2018
+./bin/tests/system/statistics/setup.sh SH 2018
+./bin/tests/system/statistics/tests.sh SH 2012,2015,2016,2018
+./bin/tests/system/statschannel/clean.sh SH 2015,2018
./bin/tests/system/statschannel/fetch.pl PERL 2015
./bin/tests/system/statschannel/ns2/example.db ZONE 2015
-./bin/tests/system/statschannel/ns2/named.conf CONF-C 2015,2016
-./bin/tests/system/statschannel/prereq.sh SH 2015
+./bin/tests/system/statschannel/ns2/named.conf.in CONF-C 2015,2016,2018
+./bin/tests/system/statschannel/prereq.sh SH 2015,2018
./bin/tests/system/statschannel/server-json.pl PERL 2015,2017
./bin/tests/system/statschannel/server-xml.pl PERL 2015,2017
-./bin/tests/system/statschannel/tests.sh SH 2015,2016
-./bin/tests/system/stop.pl SH 2001,2004,2005,2006,2007,2012,2016
+./bin/tests/system/statschannel/setup.sh SH 2018
+./bin/tests/system/statschannel/tests.sh SH 2015,2016,2018
+./bin/tests/system/stop.pl SH 2001,2004,2005,2006,2007,2012,2016,2018
./bin/tests/system/stop.sh SH 2000,2001,2004,2007,2012
./bin/tests/system/stress/clean.sh SH 2000,2001,2004,2007,2012
./bin/tests/system/stress/ns1/named.conf CONF-C 2000,2001,2004,2007
./bin/tests/system/stress/setup.sh SH 2000,2001,2004,2007,2012
./bin/tests/system/stress/tests.sh SH 2000,2001,2004,2007,2012,2014,2015,2016
./bin/tests/system/stress/update.pl PERL 2000,2001,2004,2007,2012
-./bin/tests/system/stub/clean.sh SH 2000,2001,2004,2007,2012,2015
+./bin/tests/system/stub/clean.sh SH 2000,2001,2004,2007,2012,2015,2018
./bin/tests/system/stub/knowngood.dig.out.norec X 2000,2001
./bin/tests/system/stub/knowngood.dig.out.rec X 2000,2001,2013
-./bin/tests/system/stub/ns1/named.conf CONF-C 2000,2001,2004,2007
+./bin/tests/system/stub/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2018
./bin/tests/system/stub/ns1/root.db ZONE 2000,2001,2004,2007
./bin/tests/system/stub/ns2/child.example.db ZONE 2000,2001,2004,2007
-./bin/tests/system/stub/ns2/named.conf CONF-C 2000,2001,2004,2007
+./bin/tests/system/stub/ns2/named.conf.in CONF-C 2000,2001,2004,2007,2018
./bin/tests/system/stub/ns3/example.db ZONE 2000,2001,2004,2007
-./bin/tests/system/stub/ns3/named.conf CONF-C 2000,2001,2004,2007
-./bin/tests/system/stub/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2016
-./bin/tests/system/tcp/clean.sh SH 2016
-./bin/tests/system/tcp/ns1/named.conf CONF-C 2016
+./bin/tests/system/stub/ns3/named.conf.in CONF-C 2000,2001,2004,2007,2018
+./bin/tests/system/stub/setup.sh SH 2018
+./bin/tests/system/stub/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2016,2018
+./bin/tests/system/tcp/clean.sh SH 2016,2018
+./bin/tests/system/tcp/ns1/named.conf.in CONF-C 2016,2018
./bin/tests/system/tcp/ns1/root.db ZONE 2016
./bin/tests/system/tcp/ns2/example.db ZONE 2016
-./bin/tests/system/tcp/ns2/named.conf CONF-C 2016
-./bin/tests/system/tcp/ns3/named.conf CONF-C 2016
-./bin/tests/system/tcp/ns4/named.conf CONF-C 2016
-./bin/tests/system/tcp/tests.sh SH 2016
+./bin/tests/system/tcp/ns2/named.conf.in CONF-C 2016,2018
+./bin/tests/system/tcp/ns3/named.conf.in CONF-C 2016,2018
+./bin/tests/system/tcp/ns4/named.conf.in CONF-C 2016,2018
+./bin/tests/system/tcp/setup.sh SH 2018
+./bin/tests/system/tcp/tests.sh SH 2016,2018
./bin/tests/system/testcrypto.sh SH 2014,2017
./bin/tests/system/testsock.pl PERL 2000,2001,2004,2007,2010,2011,2012,2013
./bin/tests/system/testsock6.pl PERL 2010,2012,2014
+./bin/tests/system/testsummary.sh SH 2018
./bin/tests/system/tkey/Makefile.in MAKE 2001,2002,2004,2007,2009,2012,2014,2015,2016
./bin/tests/system/tkey/clean.sh SH 2001,2004,2007,2011,2012,2013,2014,2015
./bin/tests/system/tkey/keycreate.c C 2001,2004,2005,2007,2009,2011,2012,2014,2015,2016
./bin/tests/system/tkey/prereq.sh SH 2001,2004,2006,2007,2009,2012,2014
./bin/tests/system/tkey/setup.sh SH 2001,2004,2007,2009,2012,2013,2014
./bin/tests/system/tkey/tests.sh SH 2001,2004,2007,2009,2011,2012,2013,2014,2016
-./bin/tests/system/tsig/clean.sh SH 2005,2006,2007,2012,2016
+./bin/tests/system/tsig/clean.sh SH 2005,2006,2007,2012,2016,2018
./bin/tests/system/tsig/ns1/example.db ZONE 2005,2006,2007,2009,2012
-./bin/tests/system/tsig/ns1/named.conf CONF-C 2005,2006,2007
-./bin/tests/system/tsig/setup.sh SH 2016
-./bin/tests/system/tsig/tests.sh SH 2005,2006,2007,2011,2012,2016
-./bin/tests/system/tsiggss/authsock.pl PERL 2011,2012
-./bin/tests/system/tsiggss/clean.sh SH 2010,2011,2014,2015
+./bin/tests/system/tsig/ns1/named.conf.in CONF-C 2005,2006,2007,2018
+./bin/tests/system/tsig/setup.sh SH 2016,2018
+./bin/tests/system/tsig/tests.sh SH 2005,2006,2007,2011,2012,2016,2018
+./bin/tests/system/tsiggss/authsock.pl PERL 2011,2012,2018
+./bin/tests/system/tsiggss/clean.sh SH 2010,2011,2014,2015,2018
./bin/tests/system/tsiggss/ns1/administrator.ccache X 2010
./bin/tests/system/tsiggss/ns1/dns.keytab X 2010
./bin/tests/system/tsiggss/ns1/example.nil.db.in X 2011
-./bin/tests/system/tsiggss/ns1/named.conf CONF-C 2010,2011,2013
+./bin/tests/system/tsiggss/ns1/named.conf.in CONF-C 2010,2011,2013,2018
./bin/tests/system/tsiggss/ns1/testdenied.ccache X 2010
-./bin/tests/system/tsiggss/prereq.sh SH 2010,2011,2012,2014,2016
-./bin/tests/system/tsiggss/setup.sh SH 2010,2011,2012,2014
-./bin/tests/system/tsiggss/tests.sh SH 2010,2011,2014,2016,2017
-./bin/tests/system/unknown/clean.sh SH 2000,2001,2004,2007,2012,2013,2015
+./bin/tests/system/tsiggss/prereq.sh SH 2010,2011,2012,2014,2016,2018
+./bin/tests/system/tsiggss/setup.sh SH 2010,2011,2012,2014,2018
+./bin/tests/system/tsiggss/tests.sh SH 2010,2011,2014,2016,2017,2018
+./bin/tests/system/unknown/clean.sh SH 2000,2001,2004,2007,2012,2013,2015,2018
./bin/tests/system/unknown/large.out X 2012
./bin/tests/system/unknown/ns1/broken1.db ZONE 2000,2001,2004,2007
./bin/tests/system/unknown/ns1/broken2.db ZONE 2000,2001,2004,2007
./bin/tests/system/unknown/ns1/example-class10.db ZONE 2000,2001,2004,2007
./bin/tests/system/unknown/ns1/example-in.db ZONE 2000,2001,2004,2007,2011,2012
./bin/tests/system/unknown/ns1/large.db ZONE 2012
-./bin/tests/system/unknown/ns1/named.conf CONF-C 2000,2001,2004,2007
-./bin/tests/system/unknown/ns2/named.conf CONF-C 2012
-./bin/tests/system/unknown/ns3/named.conf CONF-C 2012
+./bin/tests/system/unknown/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2018
+./bin/tests/system/unknown/ns2/named.conf.in CONF-C 2012,2018
+./bin/tests/system/unknown/ns3/named.conf.in CONF-C 2012,2018
./bin/tests/system/unknown/ns3/sign.sh SH 2012,2014
./bin/tests/system/unknown/prereq.sh SH 2014
-./bin/tests/system/unknown/setup.sh SH 2012,2014
-./bin/tests/system/unknown/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2016
+./bin/tests/system/unknown/setup.sh SH 2012,2014,2018
+./bin/tests/system/unknown/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2016,2018
./bin/tests/system/unknown/zones/nan.bad ZONE 2013
-./bin/tests/system/upforwd/ans4/ans.pl PERL 2011,2012
-./bin/tests/system/upforwd/clean.sh SH 2000,2001,2004,2007,2011,2012,2014,2015
+./bin/tests/system/upforwd/ans4/ans.pl PERL 2011,2012,2018
+./bin/tests/system/upforwd/clean.sh SH 2000,2001,2004,2007,2011,2012,2014,2015,2018
./bin/tests/system/upforwd/knowngood.after1 X 2000,2001
./bin/tests/system/upforwd/knowngood.after2 X 2000,2001
./bin/tests/system/upforwd/knowngood.before X 2000,2001
./bin/tests/system/upforwd/knowngood.ns2.before X 2000,2001
./bin/tests/system/upforwd/ns1/example1.db ZONE 2000,2001,2004,2007
-./bin/tests/system/upforwd/ns1/named.conf CONF-C 2000,2001,2004,2007,2014
-./bin/tests/system/upforwd/ns2/named.conf CONF-C 2000,2001,2004,2007,2014
-./bin/tests/system/upforwd/ns3/named.conf CONF-C 2000,2001,2004,2007,2011,2014
+./bin/tests/system/upforwd/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2014,2018
+./bin/tests/system/upforwd/ns2/named.conf.in CONF-C 2000,2001,2004,2007,2014,2018
+./bin/tests/system/upforwd/ns3/named.conf.in CONF-C 2000,2001,2004,2007,2011,2014,2018
./bin/tests/system/upforwd/ns3/nomaster.db ZONE 2011
-./bin/tests/system/upforwd/prereq.sh SH 2012,2014
-./bin/tests/system/upforwd/setup.sh SH 2000,2001,2004,2007,2011,2012,2014,2016
-./bin/tests/system/upforwd/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2014,2016
-./bin/tests/system/v6synth/clean.sh SH 2001,2004,2007,2012
-./bin/tests/system/v6synth/ns1/named.conf CONF-C 2001,2004,2007
-./bin/tests/system/v6synth/ns1/root.db ZONE 2001,2004,2007
-./bin/tests/system/v6synth/ns2/example.db ZONE 2001,2004,2007
-./bin/tests/system/v6synth/ns2/ip6.arpa.db ZONE 2001,2002,2004,2007
-./bin/tests/system/v6synth/ns2/ip6.int.db ZONE 2001,2004,2007
-./bin/tests/system/v6synth/ns2/named.conf CONF-C 2001,2004,2007
-./bin/tests/system/v6synth/ns3/named.conf CONF-C 2001,2004,2007
-./bin/tests/system/v6synth/tests.sh SH 2001,2004,2007,2012,2016
+./bin/tests/system/upforwd/prereq.sh SH 2012,2014,2018
+./bin/tests/system/upforwd/setup.sh SH 2000,2001,2004,2007,2011,2012,2014,2016,2018
+./bin/tests/system/upforwd/tests.sh SH 2000,2001,2004,2007,2011,2012,2013,2014,2016,2018
./bin/tests/system/verify/.gitignore X 2012,2016
./bin/tests/system/verify/clean.sh SH 2012,2014
./bin/tests/system/verify/prereq.sh SH 2014
./bin/tests/system/verify/setup.sh SH 2012,2014
-./bin/tests/system/verify/tests.sh SH 2012,2013,2016,2017
-./bin/tests/system/verify/zones/genzones.sh SH 2012,2013,2014
+./bin/tests/system/verify/tests.sh SH 2012,2013,2016,2017,2018
+./bin/tests/system/verify/zones/genzones.sh SH 2012,2013,2014,2018
./bin/tests/system/verify/zones/unsigned.db ZONE 2012,2016
-./bin/tests/system/views/clean.sh SH 2000,2001,2004,2005,2007,2012,2013,2014,2015
-./bin/tests/system/views/ns1/named.conf CONF-C 2000,2001,2004,2007
+./bin/tests/system/views/clean.sh SH 2000,2001,2004,2005,2007,2012,2013,2014,2015,2018
+./bin/tests/system/views/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2018
./bin/tests/system/views/ns1/root.db ZONE 2000,2001,2004,2007
./bin/tests/system/views/ns2/.gitignore X 2012
./bin/tests/system/views/ns2/1.10.in-addr.arpa.db ZONE 2015
./bin/tests/system/views/ns2/external/inline.db ZONE 2014
./bin/tests/system/views/ns2/internal.db ZONE 2000,2001,2004,2007
./bin/tests/system/views/ns2/internal/inline.db ZONE 2014
-./bin/tests/system/views/ns2/named1.conf CONF-C 2000,2001,2004,2007,2013
-./bin/tests/system/views/ns2/named2.conf CONF-C 2000,2001,2004,2007,2013,2014,2015
+./bin/tests/system/views/ns2/named1.conf.in CONF-C 2000,2001,2004,2007,2013,2018
+./bin/tests/system/views/ns2/named2.conf.in CONF-C 2000,2001,2004,2007,2013,2014,2015,2018
./bin/tests/system/views/ns3/.gitignore X 2012
./bin/tests/system/views/ns3/child.clone.db ZONE 2013
./bin/tests/system/views/ns3/internal.db ZONE 2000,2001,2004,2007
-./bin/tests/system/views/ns3/named1.conf CONF-C 2000,2001,2004,2007,2013
-./bin/tests/system/views/ns3/named2.conf CONF-C 2000,2001,2004,2007,2013
+./bin/tests/system/views/ns3/named1.conf.in CONF-C 2000,2001,2004,2007,2013,2018
+./bin/tests/system/views/ns3/named2.conf.in CONF-C 2000,2001,2004,2007,2013,2018
./bin/tests/system/views/ns5/child.clone.db ZONE 2013
-./bin/tests/system/views/ns5/named.conf CONF-C 2013
-./bin/tests/system/views/setup.sh SH 2000,2001,2004,2007,2012,2014
-./bin/tests/system/views/tests.sh SH 2000,2001,2004,2007,2012,2013,2014,2016
-./bin/tests/system/wildcard/clean.sh SH 2012,2013,2014
+./bin/tests/system/views/ns5/named.conf.in CONF-C 2013,2018
+./bin/tests/system/views/setup.sh SH 2000,2001,2004,2007,2012,2014,2018
+./bin/tests/system/views/tests.sh SH 2000,2001,2004,2007,2012,2013,2014,2016,2018
+./bin/tests/system/wildcard/clean.sh SH 2012,2013,2014,2018
./bin/tests/system/wildcard/ns1/dlv.db.in ZONE 2013
-./bin/tests/system/wildcard/ns1/named.conf CONF-C 2012,2013
+./bin/tests/system/wildcard/ns1/named.conf.in CONF-C 2012,2013,2018
./bin/tests/system/wildcard/ns1/nsec.db.in ZONE 2012,2013
./bin/tests/system/wildcard/ns1/nsec3.db.in ZONE 2012,2013
./bin/tests/system/wildcard/ns1/private.nsec.db.in ZONE 2012,2013
./bin/tests/system/wildcard/ns1/private.nsec3.db.in ZONE 2012,2013
./bin/tests/system/wildcard/ns1/root.db.in ZONE 2012,2013
-./bin/tests/system/wildcard/ns1/sign.sh SH 2012,2013,2014,2016
+./bin/tests/system/wildcard/ns1/sign.sh SH 2012,2013,2014,2016,2018
./bin/tests/system/wildcard/ns2/hints ZONE 2012
-./bin/tests/system/wildcard/ns2/named.conf CONF-C 2012
+./bin/tests/system/wildcard/ns2/named.conf.in CONF-C 2012,2018
./bin/tests/system/wildcard/ns3/hints ZONE 2012
-./bin/tests/system/wildcard/ns3/named.conf CONF-C 2012
-./bin/tests/system/wildcard/ns4/named.conf CONF-C 2012
+./bin/tests/system/wildcard/ns3/named.conf.in CONF-C 2012,2018
+./bin/tests/system/wildcard/ns4/named.conf.in CONF-C 2012,2018
./bin/tests/system/wildcard/ns5/hints ZONE 2013
-./bin/tests/system/wildcard/ns5/named.conf CONF-C 2013
+./bin/tests/system/wildcard/ns5/named.conf.in CONF-C 2013,2018
./bin/tests/system/wildcard/prereq.sh SH 2014
-./bin/tests/system/wildcard/setup.sh SH 2012,2014
-./bin/tests/system/wildcard/tests.sh SH 2012,2013,2016
+./bin/tests/system/wildcard/setup.sh SH 2012,2014,2018
+./bin/tests/system/wildcard/tests.sh SH 2012,2013,2016,2018
./bin/tests/system/win32/bigkey.dsp.in X 2016
./bin/tests/system/win32/bigkey.dsw X 2016
./bin/tests/system/win32/bigkey.mak.in X 2016
./bin/tests/system/xfer/ans5/unknownkey X 2011
./bin/tests/system/xfer/ans5/unsigned X 2011
./bin/tests/system/xfer/ans5/wrongkey X 2011
-./bin/tests/system/xfer/clean.sh SH 2000,2001,2004,2007,2011,2012,2013,2016
+./bin/tests/system/xfer/clean.sh SH 2000,2001,2004,2007,2011,2012,2013,2016,2018
./bin/tests/system/xfer/dig1.good X 2000,2001,2003,2004,2009,2011,2012,2013,2014,2015,2016,2017
./bin/tests/system/xfer/dig2.good X 2000,2001,2003,2004,2009,2011,2012,2013,2014,2015,2016,2017
./bin/tests/system/xfer/knowngood.mapped X 2016
./bin/tests/system/xfer/ns1/axfr-too-big.db ZONE 2016
./bin/tests/system/xfer/ns1/ixfr-too-big.db.in ZONE 2016
-./bin/tests/system/xfer/ns1/named.conf CONF-C 2000,2001,2004,2007,2011,2016
+./bin/tests/system/xfer/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2011,2016,2018
./bin/tests/system/xfer/ns1/root.db ZONE 2000,2001,2004,2007
./bin/tests/system/xfer/ns2/mapped.db.in ZONE 2016
-./bin/tests/system/xfer/ns2/named.conf CONF-C 2000,2001,2004,2005,2007,2013,2016
+./bin/tests/system/xfer/ns2/named.conf.in CONF-C 2000,2001,2004,2005,2007,2013,2016,2018
./bin/tests/system/xfer/ns2/slave.db.in ZONE 2013
-./bin/tests/system/xfer/ns3/named.conf CONF-C 2000,2001,2004,2007,2011,2013,2016
-./bin/tests/system/xfer/ns4/named.conf.base CONF-C 2011,2013
+./bin/tests/system/xfer/ns3/named.conf.in CONF-C 2000,2001,2004,2007,2011,2013,2016,2018
+./bin/tests/system/xfer/ns4/named.conf.base CONF-C 2011,2013,2018
./bin/tests/system/xfer/ns4/root.db.in ZONE 2011
-./bin/tests/system/xfer/ns6/named.conf CONF-C 2011,2016
-./bin/tests/system/xfer/ns7/named.conf CONF-C 2011
-./bin/tests/system/xfer/prereq.sh SH 2011,2012,2014
-./bin/tests/system/xfer/setup.sh SH 2001,2002,2004,2007,2011,2012,2013,2014,2016
-./bin/tests/system/xfer/tests.sh SH 2000,2001,2004,2005,2007,2011,2012,2013,2014,2015,2016
-./bin/tests/system/xferquota/clean.sh SH 2000,2001,2004,2007,2012,2015
+./bin/tests/system/xfer/ns6/named.conf.in CONF-C 2011,2016,2018
+./bin/tests/system/xfer/ns7/named.conf.in CONF-C 2011,2018
+./bin/tests/system/xfer/prereq.sh SH 2011,2012,2014,2018
+./bin/tests/system/xfer/setup.sh SH 2001,2002,2004,2007,2011,2012,2013,2014,2016,2018
+./bin/tests/system/xfer/tests.sh SH 2000,2001,2004,2005,2007,2011,2012,2013,2014,2015,2016,2018
+./bin/tests/system/xferquota/clean.sh SH 2000,2001,2004,2007,2012,2015,2018
./bin/tests/system/xferquota/ns1/changing1.db ZONE 2000,2001,2004,2007
./bin/tests/system/xferquota/ns1/changing2.db ZONE 2000,2001,2004,2007
-./bin/tests/system/xferquota/ns1/named.conf CONF-C 2000,2001,2004,2007,2016
+./bin/tests/system/xferquota/ns1/named.conf.in CONF-C 2000,2001,2004,2007,2016,2018
./bin/tests/system/xferquota/ns1/root.db ZONE 2000,2001,2004,2007
./bin/tests/system/xferquota/ns2/example.db ZONE 2000,2001,2002,2003,2004,2007,2009
-./bin/tests/system/xferquota/ns2/named.conf CONF-C 2000,2001,2004,2007
+./bin/tests/system/xferquota/ns2/named.conf.in CONF-C 2000,2001,2004,2007,2018
./bin/tests/system/xferquota/setup.pl PERL 2000,2001,2004,2007,2011,2012
-./bin/tests/system/xferquota/setup.sh SH 2000,2001,2004,2007,2012
-./bin/tests/system/xferquota/tests.sh SH 2000,2001,2004,2007,2012,2016
-./bin/tests/system/zero/ans5/ans.pl PERL 2016
-./bin/tests/system/zero/clean.sh SH 2013,2015
-./bin/tests/system/zero/ns1/named.conf CONF-C 2013
+./bin/tests/system/xferquota/setup.sh SH 2000,2001,2004,2007,2012,2018
+./bin/tests/system/xferquota/tests.sh SH 2000,2001,2004,2007,2012,2016,2018
+./bin/tests/system/zero/ans5/ans.pl PERL 2016,2018
+./bin/tests/system/zero/clean.sh SH 2013,2015,2018
+./bin/tests/system/zero/ns1/named.conf.in CONF-C 2013,2018
./bin/tests/system/zero/ns1/root.db ZONE 2013,2016
-./bin/tests/system/zero/ns2/named.conf CONF-C 2013,2016
+./bin/tests/system/zero/ns2/named.conf.in CONF-C 2013,2016,2018
./bin/tests/system/zero/ns2/tld.db ZONE 2016
-./bin/tests/system/zero/ns3/named.conf CONF-C 2013
+./bin/tests/system/zero/ns3/named.conf.in CONF-C 2013,2018
./bin/tests/system/zero/ns3/root.hint ZONE 2013
-./bin/tests/system/zero/ns4/named.conf CONF-C 2013,2016
+./bin/tests/system/zero/ns4/named.conf.in CONF-C 2013,2016,2018
./bin/tests/system/zero/ns4/one.tld.db ZONE 2016
-./bin/tests/system/zero/setup.sh SH 2013,2014
-./bin/tests/system/zero/tests.sh SH 2013,2016,2017
+./bin/tests/system/zero/setup.sh SH 2013,2014,2018
+./bin/tests/system/zero/tests.sh SH 2013,2016,2017,2018
./bin/tests/system/zonechecks/a.db ZONE 2004,2007
./bin/tests/system/zonechecks/aaaa.db ZONE 2004,2007
./bin/tests/system/zonechecks/bigserial.db ZONE 2015
-./bin/tests/system/zonechecks/clean.sh SH 2004,2007,2012,2014,2015,2016
+./bin/tests/system/zonechecks/clean.sh SH 2004,2007,2012,2014,2015,2016,2018
./bin/tests/system/zonechecks/cname.db ZONE 2004,2007
./bin/tests/system/zonechecks/dname.db ZONE 2004,2007
./bin/tests/system/zonechecks/noaddress.db ZONE 2004,2007
-./bin/tests/system/zonechecks/ns1/named.conf CONF-C 2012,2013,2014,2015
-./bin/tests/system/zonechecks/ns2/named.conf CONF-C 2012,2013
+./bin/tests/system/zonechecks/ns1/named.conf.in CONF-C 2012,2013,2014,2015,2018
+./bin/tests/system/zonechecks/ns2/named.conf.in CONF-C 2012,2013,2018
./bin/tests/system/zonechecks/nxdomain.db ZONE 2004,2007
./bin/tests/system/zonechecks/prereq.sh SH 2014
-./bin/tests/system/zonechecks/setup.sh SH 2012,2013,2014,2015,2016
-./bin/tests/system/zonechecks/tests.sh SH 2004,2007,2009,2012,2013,2014,2015,2016
+./bin/tests/system/zonechecks/setup.sh SH 2012,2013,2014,2015,2016,2018
+./bin/tests/system/zonechecks/tests.sh SH 2004,2007,2009,2012,2013,2014,2015,2016,2018
./bin/tests/t_api.pl PERL 1999,2000,2001,2004,2007,2012
./bin/tests/task_test.c C 1998,1999,2000,2001,2004,2007,2013,2014,2015,2018
./bin/tests/tasks/Makefile.in MAKE 1998,1999,2000,2001,2002,2004,2007,2009,2012,2014
./contrib/dlz/bin/.gitignore X 2014
./contrib/dlz/bin/dlzbdb/Makefile.in X 2005,2007,2009,2011,2012,2015
./contrib/dlz/bin/dlzbdb/dlzbdb.c X 2005
-./contrib/dlz/config.dlz.in X 2005,2006,2008,2010,2011,2014,2016,2017
+./contrib/dlz/config.dlz.in X 2005,2006,2008,2010,2011,2014,2016,2017,2018
./contrib/dlz/drivers/.gitignore X 2012
./contrib/dlz/drivers/dlz_bdb_driver.c X 2005,2008,2010,2011,2012
./contrib/dlz/drivers/dlz_bdbhpt_driver.c X 2005,2010,2011,2012
./lib/dns/mapapi X 2013,2015
./lib/dns/master.c C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2011,2012,2013,2014,2015,2016,2017,2018
./lib/dns/masterdump.c C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2011,2012,2013,2014,2015,2016,2017
-./lib/dns/message.c C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
+./lib/dns/message.c C 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
./lib/dns/name.c C 1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
./lib/dns/ncache.c C 1999,2000,2001,2002,2003,2004,2005,2007,2008,2010,2011,2012,2013,2014,2015,2016
./lib/dns/nsec.c C 1999,2000,2001,2003,2004,2005,2007,2008,2009,2011,2012,2013,2014,2015
./lib/dns/tests/Kdh.+002+18602.key X 2014
./lib/dns/tests/Krsa.+005+29235.key X 2016
./lib/dns/tests/Kyuafile X 2017
-./lib/dns/tests/Makefile.in MAKE 2011,2012,2013,2014,2015,2016,2017
+./lib/dns/tests/Makefile.in MAKE 2011,2012,2013,2014,2015,2016,2017,2018
./lib/dns/tests/acl_test.c C 2016
./lib/dns/tests/db_test.c C 2013,2015
./lib/dns/tests/dbdiff_test.c C 2011,2012,2017
./lib/irs/resconf.c C 2009,2011,2012,2014,2015,2016
./lib/irs/tests/Atffile X 2016,2017
./lib/irs/tests/Kyuafile X 2017
-./lib/irs/tests/Makefile.in MAKE 2016,2017
+./lib/irs/tests/Makefile.in MAKE 2016,2017,2018
./lib/irs/tests/resconf_test.c C 2016
./lib/irs/tests/testdata/domain.conf CONF-SH 2016
./lib/irs/tests/testdata/nameserver-v4.conf CONF-SH 2016
./lib/isc/taskpool.c C 1999,2000,2001,2004,2005,2007,2011,2012,2013
./lib/isc/tests/Atffile X 2011,2017
./lib/isc/tests/Kyuafile X 2017
-./lib/isc/tests/Makefile.in MAKE 2011,2012,2013,2014,2015,2016,2017
+./lib/isc/tests/Makefile.in MAKE 2011,2012,2013,2014,2015,2016,2017,2018
./lib/isc/tests/aes_test.c C 2014
./lib/isc/tests/counter_test.c C 2014
./lib/isc/tests/errno_test.c C 2016