Fix Ceph and Swift precheck failure

If enable Ceph MDS and RBD services, they are not conflicting
with Swift service.

Fix the check condition to make sure both Ceph and Swift exist.

Closes-Bug: #1747592

Change-Id: Icc6806125ce72992f7dff00c30d591ffb737a0c6
Signed-off-by: Tone.Zhang <tone.zhang@arm.com>
This commit is contained in:
Tone.Zhang 2018-02-06 16:20:47 +08:00
parent 0f2d547b2c
commit 3ff5ca1408

View File

@ -16,7 +16,7 @@
- container_facts['ceph_rgw'] is not defined
- inventory_hostname in groups['ceph-rgw']
- name: Check whether the swift service is enabled
local_action: fail msg='Ceph-rgw-keystone is conflicts with swift, you should only enable one of them'
when: enable_swift | bool
- name: Check whether the Swift service is enabled
local_action: fail msg='Ceph-rgw conflicts with Swift, and so you should only enable one of them'
when: enable_swift | bool and enable_ceph_rgw | bool
run_once: True