From: Sébastien Han Date: Tue, 24 Mar 2015 10:02:12 +0000 (+0100) Subject: Fix RGW startup X-Git-Tag: v1.0.0~239^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F234%2Fhead;p=ceph-ansible.git Fix RGW startup 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 --- 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