common: install ceph-common on all the machines

Since some daemons now install their own packages the task checking the
ceph version fails on Debian systems. So the 'ceph-common' package must
be installed on all the machines.

Signed-off-by: Sébastien Han <seb@redhat.com>
pull/2207/head
Sébastien Han 2017-11-22 17:11:50 +01:00
parent 3af03f0f3e
commit bb7b29a9fc
1 changed files with 5 additions and 7 deletions

View File

@ -1,4 +1,9 @@
---
- name: install red hat storage ceph-common for debian
apt:
pkg: ceph-common
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
- name: install red hat storage ceph mon for debian
apt:
name: ceph-mon
@ -33,10 +38,3 @@
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
when:
- client_group_name in group_names
- name: install red hat storage ceph-common for debian
apt:
pkg: ceph-common
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
when:
- client_group_name in group_names