blob: 2a98674ac6868de9b5bff8fd9f2a2f4975456d49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -o nounset
set -o errexit
SOFTHSM=/usr/local/bin/softhsm2-util
INSTDIR=../catlfish
PREFIX=..
. test.shvars
mv ${INSTDIR}/tests/machine/machine-1 ${INSTDIR}/tests/machine/machine-1-down
mkdir -p ${INSTDIR}/tests/machine/machine-1/db
touch ${INSTDIR}/tests/machine/machine-1/db/index
touch ${INSTDIR}/tests/machine/machine-1/db/newentries
|