Home | History | Annotate | Line # | Download | only in mkeys
      1 #!/bin/sh -e
      2 
      3 # Copyright (C) Internet Systems Consortium, Inc. ("ISC")
      4 #
      5 # SPDX-License-Identifier: MPL-2.0
      6 #
      7 # This Source Code Form is subject to the terms of the Mozilla Public
      8 # License, v. 2.0.  If a copy of the MPL was not distributed with this
      9 # file, you can obtain one at https://mozilla.org/MPL/2.0/.
     10 #
     11 # See the COPYRIGHT file distributed with this work for additional
     12 # information regarding copyright ownership.
     13 
     14 # Explicitly setting ALGORITHM_SET is only needed is the script is executed
     15 # standalone without the pytest runner (e.g. for debugging).
     16 export ALGORITHM_SET="ecc_default"
     17 
     18 . ../conf.sh
     19 
     20 cp ns5/named1.args ns5/named.args
     21 
     22 (cd ns1 && $SHELL sign.sh)
     23 (cd ns4 && $SHELL sign.sh)
     24 (cd ns6 && $SHELL setup.sh)
     25 
     26 cp ns2/managed.conf ns2/managed1.conf
     27 
     28 cd ns4
     29 mkdir nope
     30 touch nope/managed-keys.bind
     31 touch nope/managed.keys.bind.jnl
     32 chmod 444 nope/*
     33