blob: 16cf8de6a13e07b39267d638b2318cda126c313b (
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
|
#!/bin/bash
#
### BEGIN INIT INFO
# Provides: glusterd
# Required-Start: $local_fs $network
# Required-Stop:
# 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
;;
restart)
$0 stop
$0 start
rc_status
;;
*)
echo $"Usage: $0 {start|stop|status|restart}."
exit 1
esac
exit 0
|