From 02f7be035d02e5926a223b4ef8ab8eeff4ce519d Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Tue, 23 Sep 2014 11:22:10 -0400 Subject: [PATCH] when creating monitors, enable the service on el-like distros Signed-off-by: Alfredo Deza --- ceph_deploy/hosts/centos/mon/create.py | 3 +++ 1 file changed, 3 insertions(+) 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) -- 2.47.3