]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
[BZ-1228842] Echo RGW default port during rgw create 327/head
authorTravis Rhoden <trhoden@redhat.com>
Thu, 16 Jul 2015 20:33:13 +0000 (13:33 -0700)
committerTravis Rhoden <trhoden@redhat.com>
Thu, 16 Jul 2015 21:40:43 +0000 (14:40 -0700)
Let the user know the default port has been used for RGW, as the
default port is probably not one people will guess.

Signed-off-by: Travis Rhoden <trhoden@redhat.com>
ceph_deploy/rgw.py

index 1c37a79815a45e1ba21d92098c6694f4af12a29e..73cd748b2ed49c4ae179ab00657cf98f16529a29 100644 (file)
@@ -155,6 +155,12 @@ def rgw_create(args):
 
             create_rgw(distro, name, args.cluster, distro.init)
             distro.conn.exit()
+            LOG.info(
+                ('The Ceph Object Gateway (RGW) is now running on host %s and '
+                 'default port %s'),
+                hostname,
+                '7480'
+            )
         except RuntimeError as e:
             LOG.error(e)
             errors += 1