blob: c9a39a10d5cb31ceb10f28206e36a27443c4ee81 (
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
|