ce653eadc2
fixes http://savannah.nongnu.org/bugs/?26581 Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
55 lines
833 B
Bash
Executable File
55 lines
833 B
Bash
Executable File
#!/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
|