diff options
Diffstat (limited to 'tests/cluster.rc')
-rwxr-xr-x | tests/cluster.rc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/cluster.rc b/tests/cluster.rc index 42f3ad24434..5c821776156 100755 --- a/tests/cluster.rc +++ b/tests/cluster.rc @@ -61,13 +61,17 @@ function define_glusterds() { done } +function start_glusterd() { + local g + local index=$1 -function start_glusterds() { - local g; + g="glusterd_${index}" + ${!g} +} +function start_glusterds() { for i in `seq 1 $CLUSTER_COUNT`; do - g="glusterd_$i"; - ${!g}; + start_glusterd $i done } |