mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
14 lines
247 B
Bash
14 lines
247 B
Bash
#!/bin/sh
|
|
|
|
name="$(mktemp -u graid3.XXXXXX)"
|
|
class="raid3"
|
|
base=`basename $0`
|
|
|
|
graid3_test_cleanup()
|
|
{
|
|
[ -c /dev/$class/$name ] && graid3 stop $name
|
|
geom_test_cleanup
|
|
}
|
|
trap graid3_test_cleanup ABRT EXIT INT TERM
|
|
|
|
. `dirname $0`/../geom_subr.sh
|