File: glusterfsd-Redhat

package info (click to toggle)
glusterfs 3.0.5-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 10,188 kB
  • ctags: 10,263
  • sloc: ansic: 126,592; sh: 10,769; makefile: 530; python: 498; yacc: 497; lisp: 124; lex: 74
file content (54 lines) | stat: -rw-r--r-- 834 bytes parent folder | download
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
#!/bin/bash
#
# chkconfig: 35 90 12
# description: Glusterfsd server
#

# Get function from functions library
. /etc/rc.d/init.d/functions

BASE=glusterfsd
GLUSTERFSD_BIN=${prefix}/sbin/$BASE
CONFIGFILE=/etc/glusterfs/glusterfsd.vol
GLUSTERFSD_OPTS="-f $CONFIGFILE"
GSERVER="$GLUSTERFSD_BIN $GLUSTERFSD_OPTS"
RETVAL=0

# Start the service $BASE
start()
{
       echo $"Starting $BASE:"
       daemon $GSERVER
       RETVAL=$?
       [ $RETVAL -ne 0 ] && exit $RETVAL
}

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


### service arguments ###
case $1 in
 start)
       start
       ;;
 stop)
       stop
       ;;
 status)
       status $BASE
       ;;
 restart)
       $0 stop
       $0 start
       ;;
 *)
       echo $"Usage: $0 {start|stop|status|restart}."
       exit 1
esac

exit 0