blob: ede27b2b3c8fa39175fe673fb7b397eb321695cd (
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
|
#!/bin/bash
#
### BEGIN INIT INFO
# Provides: glusterfsd
# Required-Start: $local_fs $network
# Required-Stop:
# Default-Start: 3 5
# Default-Stop:
# Short-Description: GlusterFS server daemon
# Description: All necessary services for GlusterFS clients
### END INIT INFO
# Get function from functions library
. /etc/rc.status
BASE=glusterfsd
GSERVER="/usr/sbin/$BASE -f /etc/glusterfs/glusterfsd.vol"
RETVAL=0
# Start the service $BASE
start()
{
echo -n $"Starting $BASE:"
startproc $GSERVER
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 " glusterfsd"
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
|