fa4a1febf7
features. The gmirror(8) utility should be used for control of this class. There is no manual page yet, but I'm working on it with keramida@. Many useful tests provided by: simon (thank you!) Some ideas from: scottl, simon, phk
11 lines
151 B
Bash
11 lines
151 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
dir=`dirname $0`
|
|
|
|
gmirror load >/dev/null 2>&1
|
|
for ts in `dirname $0`/test-*.sh; do
|
|
sh $ts
|
|
done
|
|
gmirror unload >/dev/null 2>&1
|