Blame bin/tests/system/masterformat/ns1/compile.sh

Packit Service ae04f2
#!/bin/sh
Packit Service ae04f2
#
Packit Service ae04f2
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
Packit Service ae04f2
#
Packit Service ae04f2
# This Source Code Form is subject to the terms of the Mozilla Public
Packit Service ae04f2
# License, v. 2.0. If a copy of the MPL was not distributed with this
Packit Service ae04f2
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit Service ae04f2
#
Packit Service ae04f2
# See the COPYRIGHT file distributed with this work for additional
Packit Service ae04f2
# information regarding copyright ownership.
Packit Service ae04f2
Packit Service ae04f2
# shellcheck source=conf.sh
Packit Service ae04f2
. "$SYSTEMTESTTOP/conf.sh"
Packit Service ae04f2
Packit Service ae04f2
$CHECKZONE -D -F raw -o example.db.raw example \
Packit Service ae04f2
        example.db > /dev/null 2>&1
Packit Service ae04f2
$CHECKZONE -D -F map -o ../ns3/example.db.map example \
Packit Service ae04f2
        example.db > /dev/null 2>&1
Packit Service ae04f2
$CHECKZONE -D -F map -o ../ns3/dynamic.db.map dynamic \
Packit Service ae04f2
        example.db > /dev/null 2>&1
Packit Service ae04f2
$CHECKZONE -D -F raw=1 -o example.db.raw1 example-explicit \
Packit Service ae04f2
        example.db > /dev/null 2>&1
Packit Service ae04f2
$CHECKZONE -D -F raw=0 -o example.db.compat example-compat \
Packit Service ae04f2
        example.db > /dev/null 2>&1
Packit Service ae04f2
$CHECKZONE -D -F raw -L 3333 -o example.db.serial.raw example \
Packit Service ae04f2
        example.db > /dev/null 2>&1
Packit Service ae04f2
$CHECKZONE -D -F raw -o large.db.raw large large.db > /dev/null 2>&1
Packit Service ae04f2
$CHECKZONE -D -F map -o example.db.map example-map \
Packit Service ae04f2
        example.db > /dev/null 2>&1
Packit Service ae04f2
Packit Service ae04f2
$KEYGEN -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" -r "$RANDFILE" -f KSK signed > /dev/null 2>&1
Packit Service ae04f2
$KEYGEN -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" -r "$RANDFILE" signed > /dev/null 2>&1
Packit Service ae04f2
$SIGNER -S -f signed.db.signed -o signed signed.db > /dev/null 2>&1
Packit Service ae04f2
$CHECKZONE -D -F map -o signed.db.map signed signed.db.signed > /dev/null 2>&1