mirror of https://github.com/ceph/ceph-ansible.git
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
parent
3af03f0f3e
commit
bb7b29a9fc
|
@ -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
|
- name: install red hat storage ceph mon for debian
|
||||||
apt:
|
apt:
|
||||||
name: ceph-mon
|
name: ceph-mon
|
||||||
|
@ -33,10 +38,3 @@
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
when:
|
when:
|
||||||
- client_group_name in group_names
|
- 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
|
|
||||||
|
|
Loading…
Reference in New Issue