]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - tools/regression/geom_mirror/conf.sh
MFC r293073:
[FreeBSD/stable/10.git] / tools / regression / geom_mirror / conf.sh
1 #!/bin/sh
2 # $FreeBSD$
3
4 name="$(mktemp -u mirror.XXXXXX)"
5 class="mirror"
6 base=`basename $0`
7
8 gmirror_test_cleanup()
9 {
10         [ -c /dev/$class/$name ] && gmirror destroy $name
11         geom_test_cleanup
12 }
13 trap gmirror_test_cleanup ABRT EXIT INT TERM
14
15 . `dirname $0`/../geom_subr.sh