From a01720a09df8a5f282ccd25f67abc9f9337a38a6 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:42:20 -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 }}