From c605ff6a68720ab43b63086c3ac1d529a651f585 Mon Sep 17 00:00:00 2001 From: "Patrick C. F. Ernzer" Date: Thu, 7 Feb 2019 16:36:20 +0100 Subject: [PATCH] setup_ntp: call handler to disable ntpd if chronyd used The task setup chronyd called the handler disable chronyd, which of course defeats the purpose. Changing the task to disable ntpd instead fixes the issue of chronyd being disabled after it got enabled. Fixes: #3582 Signed-off-by: Patrick C. F. Ernzer pcfe@redhat.com --- roles/ceph-infra/tasks/setup_ntp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-infra/tasks/setup_ntp.yml b/roles/ceph-infra/tasks/setup_ntp.yml index cb2a89aa5..d815819dc 100644 --- a/roles/ceph-infra/tasks/setup_ntp.yml +++ b/roles/ceph-infra/tasks/setup_ntp.yml @@ -56,5 +56,5 @@ enabled: yes state: started notify: - - disable chronyd + - disable ntpd - disable timesyncd -- 2.39.5