From 8b4cb8f37266183fe4e1925d07e50703e520f2fa Mon Sep 17 00:00:00 2001 From: Christophe Courtaut Date: Fri, 5 Jul 2013 14:41:04 +0200 Subject: [PATCH] rgw: Add explicit messages in radosgw init script http://tracker.ceph.com/issues/5478 fixes #5478 Signed-off-by: Christophe Courtaut --- src/init-radosgw.sysv | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/init-radosgw.sysv b/src/init-radosgw.sysv index 8a47a07a9a97..e08e1bd1b1b2 100644 --- a/src/init-radosgw.sysv +++ b/src/init-radosgw.sysv @@ -35,6 +35,7 @@ fi case "$1" in start) + echo "Starting radosgw instance(s)..." for name in `ceph-conf --list-sections $PREFIX`; do auto_start=`ceph-conf -n $name 'auto start'` @@ -73,7 +74,7 @@ case "$1" in reload) #start-stop-daemon --signal HUP -x $RADOSGW --oknodo killproc $RADOSGW -SIGHUP - echo "Reloading radosgw..." + echo "Reloading radosgw instance(s)..." ;; restart|force-reload) $0 stop @@ -82,7 +83,7 @@ case "$1" in stop) #start-stop-daemon --stop -x $RADOSGW --oknodo killproc $RADOSGW - echo "Stopping radosgw..." + echo "Stopping radosgw instance(s)..." ;; status) if pidof $RADOSGW >/dev/null; then -- 2.47.3