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 | |
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')
-rwxr-xr-x | extras/init.d/glusterfsd-Debian.in (renamed from extras/init.d/glusterfsd-Debian) | 2 | ||||
-rwxr-xr-x | extras/init.d/glusterfsd-Redhat.in (renamed from extras/init.d/glusterfsd-Redhat) | 5 | ||||
-rwxr-xr-x | extras/init.d/glusterfsd-SuSE.in (renamed from extras/init.d/glusterfsd-SuSE) | 5 |
3 files changed, 9 insertions, 3 deletions
diff --git a/extras/init.d/glusterfsd-Debian b/extras/init.d/glusterfsd-Debian.in index dcd3e0c50..a0c83d535 100755 --- a/extras/init.d/glusterfsd-Debian +++ b/extras/init.d/glusterfsd-Debian.in @@ -15,7 +15,7 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin NAME=glusterfsd SCRIPTNAME=/etc/init.d/$NAME -DAEMON=/usr/sbin/$NAME +DAEMON=@prefix@/sbin/$NAME PIDFILE=/var/run/$NAME.pid CONFIGFILE=/etc/glusterfs/glusterfsd.vol GLUSTERFS_OPTS="-f $CONFIGFILE" diff --git a/extras/init.d/glusterfsd-Redhat b/extras/init.d/glusterfsd-Redhat.in index 2577e9e76..f53de8f21 100755 --- a/extras/init.d/glusterfsd-Redhat +++ b/extras/init.d/glusterfsd-Redhat.in @@ -8,7 +8,10 @@ . /etc/rc.d/init.d/functions BASE=glusterfsd -GSERVER="/usr/sbin/$BASE -f /etc/glusterfs/glusterfsd.vol" +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 diff --git a/extras/init.d/glusterfsd-SuSE b/extras/init.d/glusterfsd-SuSE.in index ede27b2b3..43552bb49 100755 --- a/extras/init.d/glusterfsd-SuSE +++ b/extras/init.d/glusterfsd-SuSE.in @@ -15,7 +15,10 @@ . /etc/rc.status BASE=glusterfsd -GSERVER="/usr/sbin/$BASE -f /etc/glusterfs/glusterfsd.vol" +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 |