From: Travis Rhoden Date: Fri, 8 May 2015 12:59:03 +0000 (-0400) Subject: The RGW daemon name already has "rgw." prefixed X-Git-Tag: v1.5.24~8^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=542815114d387d609da97f0ba339c8f329933d84;p=ceph-deploy.git The RGW daemon name already has "rgw." prefixed Remove redundant "rgw." in daemon name when starting service Signed-off-by: Travis Rhoden --- diff --git a/ceph_deploy/rgw.py b/ceph_deploy/rgw.py index 0fd022e..e9d701b 100644 --- a/ceph_deploy/rgw.py +++ b/ceph_deploy/rgw.py @@ -102,7 +102,7 @@ def create_rgw(distro, name, cluster, init): 'service', 'ceph-radosgw', 'start', - 'rgw.{name}'.format(name=name), + '{name}'.format(name=name), ], timeout=7 )