glusterd init script: fix glusterfsd stop() not running at system

shutdown or reboot. RHBZ 1073217
This commit is contained in:
Kaleb S. KEITHLEY 2014-07-08 06:38:40 -04:00
parent 552921b9c2
commit 04451c08dd
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ start() {
daemon $exe${GLUSTERD_LOGFILE+" -l $GLUSTERD_LOGFILE"}${GLUSTERD_LOGLEVEL+" -L $GLUSTERD_LOGLEVEL"} -p $pidf
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
[ $retval -eq 0 ] && touch $lockfile /var/lock/subsys/glusterfsd
return $retval
}