summaryrefslogtreecommitdiffstats
path: root/tests/bugs/bug-880898.t
blob: 8ba35ec1a59911fa0e0d86a5dedbe95f26e246ef (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

cleanup;

TEST glusterd
TEST $CLI volume create $V0 replica 2 $H0:$B0/brick1 $H0:$B0/brick2
TEST $CLI volume start $V0
pkill glusterfs
uuid=""
for line in $(cat $GLUSTERD_WORKDIR/glusterd.info)
do
	if [[ $line == UUID* ]]
	then
		uuid=`echo $line | sed -r 's/^.{5}//'`
	fi
done

gluster volume heal $V0 info | grep "Status: self-heal-daemon is not running on $uuid";
EXPECT "0" echo $?

cleanup;