From 6b11a47249f0ad468d19cfaba6d383c8256a358a Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 26 Jun 2008 14:45:51 +0000 Subject: [PATCH] -xCATd init script polish for RH functions git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1776 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/etc/init.d/xcatd | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/xCAT-server/etc/init.d/xcatd b/xCAT-server/etc/init.d/xcatd index 64a218eaf..3fa369aec 100755 --- a/xCAT-server/etc/init.d/xcatd +++ b/xCAT-server/etc/init.d/xcatd @@ -21,6 +21,17 @@ if [ -r /etc/sysconfig/xcat ]; then . /etc/sysconfig/xcat fi +RHSuccess() +{ + success + echo +} + +RHFailure() +{ + failure + echo +} MStatus() { ps ax|grep -v grep|grep xcatd: >& /dev/null @@ -39,8 +50,8 @@ if [ -f /etc/init.d/functions ]; then . /etc/init.d/functions START_DAEMON=daemon STATUS=MStatus - LOG_SUCCESS=success - LOG_FAILURE=failure + LOG_SUCCESS=RHSuccess + LOG_FAILURE=RHFailure LOG_WARNING=passed elif [ -f /lib/lsb/init-functions ]; then . /lib/lsb/init-functions