From 22348ebce70721c2f7bf6336f546d57d65560519 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Tue, 24 Mar 2015 11:02:12 +0100 Subject: [PATCH] Fix RGW startup MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit If the distribution wasn't Ubuntu, the check wasn't performed so the evaluation in the task later wasn't possible. Signed-off-by: Sébastien Han --- roles/ceph-radosgw/tasks/start_radosgw.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/ceph-radosgw/tasks/start_radosgw.yml b/roles/ceph-radosgw/tasks/start_radosgw.yml index 0db1a1d05..9dec19c68 100644 --- a/roles/ceph-radosgw/tasks/start_radosgw.yml +++ b/roles/ceph-radosgw/tasks/start_radosgw.yml @@ -4,7 +4,6 @@ command: /etc/init.d/radosgw status register: rgwstatus ignore_errors: True - when: ansible_distribution != "Ubuntu" - name: Start RGW service: name=radosgw-all state=started -- 2.47.3