2015-03-02 19:27:54 -08:00
|
|
|
#!/bin/sh -e
|
|
|
|
#
|
2017-10-11 17:08:21 -07:00
|
|
|
# Copyright (C) 2015-2017 Internet Systems Consortium, Inc. ("ISC")
|
2015-03-02 19:27:54 -08:00
|
|
|
#
|
2016-06-27 14:56:38 +10:00
|
|
|
# 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/.
|
2015-03-02 19:27:54 -08:00
|
|
|
|
|
|
|
SYSTEMTESTTOP=..
|
|
|
|
. $SYSTEMTESTTOP/conf.sh
|
|
|
|
|
|
|
|
$SHELL clean.sh
|
2017-10-10 18:28:34 -07:00
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
copy_setports ns2/named1.conf.in ns2/named.conf
|
|
|
|
|
|
|
|
copy_setports ns2/named-alt1.conf.in ns2/named-alt1.conf
|
|
|
|
copy_setports ns2/named-alt2.conf.in ns2/named-alt2.conf
|
|
|
|
copy_setports ns2/named-alt3.conf.in ns2/named-alt3.conf
|
2017-10-10 18:28:34 -07:00
|
|
|
|
|
|
|
mkdir ns2/nope
|
2017-11-01 09:29:24 +11:00
|
|
|
|
|
|
|
if [ 1 = "${CYGWIN:-0}" ]
|
|
|
|
then
|
|
|
|
setfacl -s user::r-x,group::r-x,other::r-x ns2/nope
|
|
|
|
else
|
|
|
|
chmod 555 ns2/nope
|
|
|
|
fi
|