summaryrefslogtreecommitdiffstats
path: root/extras/init.d/glusterfsd-SuSE.in
diff options
context:
space:
mode:
authorBalamurugan Arumugam <bala@gluster.com>2010-09-13 03:40:16 +0000
committerVijay Bellur <vijay@dev.gluster.com>2010-09-13 03:05:46 -0700
commit993edcc972269424901357578568b48af70a6a63 (patch)
tree2d5cc192da4d2d31cc5305bbf0779d46d01892e6 /extras/init.d/glusterfsd-SuSE.in
parent288040196caa67b559ea668cef21284515109d94 (diff)
extras: modify run level scripts to support glusterd.v3.1.0qa21
Signed-off-by: Bala.JA <bala@gluster.com> Signed-off-by: Pavan Vilas Sondur <pavan@gluster.com> Signed-off-by: Vijay Bellur <vijay@dev.gluster.com> BUG: 1589 (Change init.d scripts to include glusterd) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1589
Diffstat (limited to 'extras/init.d/glusterfsd-SuSE.in')
-rwxr-xr-xextras/init.d/glusterfsd-SuSE.in75
1 files changed, 0 insertions, 75 deletions
diff --git a/extras/init.d/glusterfsd-SuSE.in b/extras/init.d/glusterfsd-SuSE.in
deleted file mode 100755
index 43552bb499c..00000000000
--- a/extras/init.d/glusterfsd-SuSE.in
+++ /dev/null
@@ -1,75 +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
-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