blob: 1aea8bc134d4a73fe5201dc7cd55c686cc48257c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
. $(dirname $0)/../../include.rc
cleanup;
## Start glusterd
TEST glusterd;
TEST pidof glusterd;
TEST ! $CLI peer probe invalid-peer
TEST pidof glusterd;
cleanup;
|