blob: 2095903d9d24ce25ba6282cfded4595e1c251c86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
. $(dirname $0)/../include.rc
cleanup;
TEST glusterd;
TEST pidof glusterd;
TEST ! $CLI volume set $V0 performance.open-behind off;
TEST pidof glusterd;
cleanup;
|