blob: d4aec1c87ad94eb01d0bde32890f8c0a3e9d6767 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
shutdowntest_bin=./shutdowntest
if [ -e ./shutdowntest.exe ]; then
shutdowntest_bin=./shutdowntest.exe
fi
if [ -z $srcdir ]; then
srcdir=.
fi
$shutdowntest_bin $srcdir/server1-rsa.pem $srcdir/server1-rsa-chain.pem $srcdir/ca-root-rsa.pem
|