blob: 9c616ea28fb789efb959b02c4a0523a3281911cb (
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;
|