From 05ea783eff88302917991fc7101dae456068fc83 Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Tue, 12 Feb 2019 12:25:13 +0530 Subject: [PATCH] fix mistake in task that aborts when ntpd is chosen on Atomic Since it's already confusing whether ntp_daemon_type should be "ntp" or "ntpd", fix the mistake in the title of the task that aborts if ntp_daemon_type is set to "ntpd" and OS being used is Atomic. Signed-off-by: Rishabh Dave --- roles/ceph-validate/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-validate/tasks/main.yml b/roles/ceph-validate/tasks/main.yml index a09889f0a..2ca9e6c83 100644 --- a/roles/ceph-validate/tasks/main.yml +++ b/roles/ceph-validate/tasks/main.yml @@ -37,7 +37,7 @@ - ntp_daemon_type not in ['chronyd', 'ntpd', 'timesyncd'] # Since NTPd can not be installed on Atomic... -- name: abort if ntp_daemon_type is ntp on Atomic +- name: abort if ntp_daemon_type is ntpd on Atomic fail: msg: installation can't happen on Atomic and ntpd needs to be installed when: -- 2.39.5