diff options
Diffstat (limited to 'extras/init.d')
-rwxr-xr-x | extras/init.d/glusterd-Redhat.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/extras/init.d/glusterd-Redhat.in b/extras/init.d/glusterd-Redhat.in index 5ee3ab90832..0c39ff139ac 100755 --- a/extras/init.d/glusterd-Redhat.in +++ b/extras/init.d/glusterd-Redhat.in @@ -8,6 +8,8 @@ . /etc/rc.d/init.d/functions BASE=glusterd +GLUSTERFSD=glusterfsd +GLUSTERFS=glusterfs GLUSTERD_BIN=@prefix@/sbin/$BASE GLUSTERD_OPTS="" GLUSTERD="$GLUSTERD_BIN $GLUSTERD_OPTS" @@ -29,6 +31,11 @@ stop() echo -n $"Stopping $BASE:" killproc $BASE echo + pidof -c -o %PPID -x $GLUSTERFSD &> /dev/null + [ $? -eq 0 ] && killproc $GLUSTERFSD &> /dev/null + + pidof -c -o %PPID -x $GLUSTERFS &> /dev/null + [ $? -eq 0 ] && killproc $GLUSTERFS &> /dev/null } |