summaryrefslogtreecommitdiffstats
path: root/tests/sys/geom/class/eli/conf.sh
blob: 080fa613bad1c694db21d95664925281ff9b29dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# $FreeBSD$

class="eli"
base=`basename $0`

no=0
while [ -c /dev/md$no ]; do
	: $(( no += 1 ))
done

geli_test_cleanup()
{
	[ -c /dev/md${no}.eli ] && geli detach md${no}.eli
	mdconfig -d -u $no
}
trap geli_test_cleanup ABRT EXIT INT TERM

. `dirname $0`/../geom_subr.sh
OpenPOWER on IntegriCloud