summaryrefslogtreecommitdiffstats
path: root/tests/bugs/cli/bug-1087487.t
blob: 0659ffab68443770db22ef073ece643b47184066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc

cleanup;

function rebalance_start {
         $CLI volume rebalance $1 start | head -1;
}

TEST glusterd
TEST pidof glusterd

TEST $CLI volume create $V0 $H0:$B0/${V0}0 $H0:$B0/${V0}1

TEST $CLI volume start $V0

EXPECT "volume rebalance: $V0: success: Rebalance on $V0 has \
been started successfully. Use rebalance status command to \
check status of the rebalance process." rebalance_start $V0

cleanup;