From: Travis Rhoden Date: Thu, 16 Jul 2015 20:33:13 +0000 (-0700) Subject: [BZ-1228842] Echo RGW default port during rgw create X-Git-Tag: v1.5.26~5^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2878c9183fa01bf2fe27580852a165300e3ea061;p=ceph-deploy.git [BZ-1228842] Echo RGW default port during rgw create 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 --- diff --git a/ceph_deploy/rgw.py b/ceph_deploy/rgw.py index 1c37a79..73cd748 100644 --- a/ceph_deploy/rgw.py +++ b/ceph_deploy/rgw.py @@ -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