summaryrefslogtreecommitdiffstats
path: root/extras/init.d/glusterfsd-SuSE
diff options
context:
space:
mode:
authorHarshavardhana <harsha@zresearch.com>2009-05-15 02:39:15 -0700
committerAnand V. Avati <avati@amp.gluster.com>2009-05-16 15:32:44 +0530
commitce653eadc2d13e9f4d3748d217ef7614539a2f34 (patch)
treebcf600c879ca15a32d465b83d6814f8e6f891352 /extras/init.d/glusterfsd-SuSE
parent11cae446e0c115bbfa5ee3e6b18ef0e2c45b84fe (diff)
modified init scripts to honour @prefix@
fixes http://savannah.nongnu.org/bugs/?26581 Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'extras/init.d/glusterfsd-SuSE')
-rwxr-xr-xextras/init.d/glusterfsd-SuSE72
1 files changed, 0 insertions, 72 deletions
diff --git a/extras/init.d/glusterfsd-SuSE b/extras/init.d/glusterfsd-SuSE
deleted file mode 100755
index ede27b2b3c8..00000000000
--- a/extras/init.d/glusterfsd-SuSE
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/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