From: Alfredo Deza Date: Tue, 23 Sep 2014 15:22:10 +0000 (-0400) Subject: when creating monitors, enable the service on el-like distros X-Git-Tag: v1.5.16~8^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=02f7be035d02e5926a223b4ef8ab8eeff4ce519d;p=ceph-deploy.git when creating monitors, enable the service on el-like distros Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/hosts/centos/mon/create.py b/ceph_deploy/hosts/centos/mon/create.py index d0dddbd..bfc6231 100644 --- a/ceph_deploy/hosts/centos/mon/create.py +++ b/ceph_deploy/hosts/centos/mon/create.py @@ -1,4 +1,5 @@ from ceph_deploy.hosts import common +from ceph_deploy.util import system from ceph_deploy.lib import remoto @@ -19,3 +20,5 @@ def create(distro, args, monitor_keyring): ], timeout=7, ) + + system.enable_service(distro.conn)