mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-03 05:18:29 +03:00
15 lines
170 B
Bash
Executable File
15 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export LD_LIBRARY_PATH="$1"
|
|
|
|
test -n "$2" && {
|
|
./lvmetad -f &
|
|
PID=$!
|
|
sleep .1
|
|
./testclient
|
|
kill $PID
|
|
exit 0
|
|
}
|
|
|
|
sudo ./test.sh "$1" .
|