diff options
author | Harshavardhana <harsha@zresearch.com> | 2009-05-15 02:39:15 -0700 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-05-16 15:32:44 +0530 |
commit | ce653eadc2d13e9f4d3748d217ef7614539a2f34 (patch) | |
tree | bcf600c879ca15a32d465b83d6814f8e6f891352 /extras/init.d/glusterfsd-Redhat.in | |
parent | 11cae446e0c115bbfa5ee3e6b18ef0e2c45b84fe (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-Redhat.in')
-rwxr-xr-x | extras/init.d/glusterfsd-Redhat.in | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/extras/init.d/glusterfsd-Redhat.in b/extras/init.d/glusterfsd-Redhat.in new file mode 100755 index 00000000000..f53de8f2190 --- /dev/null +++ b/extras/init.d/glusterfsd-Redhat.in @@ -0,0 +1,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 |