]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: Add explicit messages in radosgw init script 397/head
authorChristophe Courtaut <christophe.courtaut@gmail.com>
Fri, 5 Jul 2013 12:41:04 +0000 (14:41 +0200)
committerChristophe Courtaut <christophe.courtaut@gmail.com>
Fri, 5 Jul 2013 12:41:04 +0000 (14:41 +0200)
http://tracker.ceph.com/issues/5478 fixes #5478

Signed-off-by: Christophe Courtaut <christophe.courtaut@gmail.com>
src/init-radosgw.sysv

index 8a47a07a9a977f831b27729c9b658e4d4675c68a..e08e1bd1b1b2a51a33506a7a461e1ee9670e7a4c 100644 (file)
@@ -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