Blame bin/tests/virtual-time/autosign-zsk/setup.sh

Packit Service ae04f2
#!/bin/sh -e
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
SYSTEMTESTTOP=..
Packit Service ae04f2
. $SYSTEMTESTTOP/conf.sh
Packit Service ae04f2
. ./clean.sh
Packit Service ae04f2
Packit Service ae04f2
../../../tools/genrandom 800 random.data
Packit Service ae04f2
dd if=random.data of=random.data1 bs=1k count=400 2> /dev/null
Packit Service ae04f2
dd if=random.data of=random.data2 bs=1k skip=400 2> /dev/null
Packit Service ae04f2
Packit Service ae04f2
cd ns1 && sh sign.sh
Packit Service ae04f2