[rhmessaging-commits] rhmessaging commits: r1598 - store/trunk/cpp/etc.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Tue Jan 22 16:45:19 EST 2008


Author: nunofsantos
Date: 2008-01-22 16:45:19 -0500 (Tue, 22 Jan 2008)
New Revision: 1598

Modified:
   store/trunk/cpp/etc/rhmd
Log:
bz 429750: fix process name in service

Modified: store/trunk/cpp/etc/rhmd
===================================================================
--- store/trunk/cpp/etc/rhmd	2008-01-22 20:16:17 UTC (rev 1597)
+++ store/trunk/cpp/etc/rhmd	2008-01-22 21:45:19 UTC (rev 1598)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# rhmd        Startup script for the Qpid messaging daemon with bdbstore enabled
+# rhmd        Startup script for the RHM messaging daemon (Qpid messaging daemon with bdbstore enabled)
 #
 
 ### BEGIN INIT INFO
@@ -30,7 +30,7 @@
 RETVAL=0
 
 start() {
-	echo -n $"Starting Qpid AMQP daemon: "
+	echo -n $"Starting RHM daemon: "
 	$prog --daemon --config=/etc/rhmd.conf
 	RETVAL=$?
 	echo
@@ -39,7 +39,7 @@
 }
 
 stop() {
-	echo -n $"Stopping Qpid AMQP daemon: "
+	echo -n $"Stopping RHM daemon: "
 	killproc $prog
 	RETVAL=$?
 	echo
@@ -62,7 +62,7 @@
 	$1
 	;;
   status)
-	status $prog
+	status $prog | sed 's/qpidd/rhmd/'
 	RETVAL=$?
 	;;
   force-reload)




More information about the rhmessaging-commits mailing list