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