summaryrefslogtreecommitdiffstats
path: root/extras/init.d/glusterd-SuSE.in
blob: 6259bab00b66223018770b1b06869e8974ca1a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash
#
### BEGIN INIT INFO
# Provides:       glusterd
# Required-Start: $remote_fs $network
# Required-Stop: $remote_fs $network
# Default-Start:  3 5
# Default-Stop:
# Short-Description: Gluster File System service for volume management
# Description:    Gluster File System service for volume management
### END INIT INFO

# Get function from functions library

. /etc/rc.status

BASE=glusterd
GLUSTERD_BIN=@prefix@/sbin/$BASE
GLUSTERD_OPTS=""
GLUSTERD="$GLUSTERD_BIN $GLUSTERD_OPTS"
RETVAL=0

# Start the service $BASE
start()
{
       echo -n $"Starting $BASE:"
       startproc $GLUSTERD
       return $?
}

# Stop the service $BASE
stop()
{
       echo $"Stopping $BASE:"
       killproc $BASE
       return $?
}


### service arguments ###
case $1 in
 start)
       start || {
	   rc_status -v
	   rc_exit
       }
       rc_status -v
       ;;
 stop)
       stop || {
	   rc_status -v
	   rc_exit
       }
       rc_status -v
       ;;
 status)
	echo -n " glusterd"
	if ! checkproc $BASE ;then
	    echo " not running"
	    rc_failed 3
	fi
	rc_status -v
       ;;
 reload)
       rc_failed 3
       rc_status -v
       ;;
 restart)
       $0 stop
       $0 start
       rc_status
       ;;
 *)
       echo $"Usage: $0 {start|stop|status|reload|restart}."
       exit 1
esac

exit 0