From 645a88f7cd8d5f921cc058379385e0215d3e245b Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 17 Jun 2019 10:28:18 -0400 Subject: [PATCH] Ensure Ceph daemons are disabled (managed by PVC) --- roles/pvc/tasks/ceph/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/pvc/tasks/ceph/main.yml b/roles/pvc/tasks/ceph/main.yml index c98c3bc..5590966 100644 --- a/roles/pvc/tasks/ceph/main.yml +++ b/roles/pvc/tasks/ceph/main.yml @@ -78,11 +78,11 @@ - mgr when: newhost is defined and newhost -- name: start and enable daemons +- name: start but disable daemons service: name: "{{ item }}" state: started - enabled: yes + enabled: no with_items: - ceph-mon@{{ ansible_hostname }} - ceph-mgr@{{ ansible_hostname }}