Merge pull request #2207 from ceph/mds-debian

common: install ceph-common on all the machines
pull/2210/head
Sébastien Han 2017-11-22 17:45:29 +01:00 committed by GitHub
commit d5399e8d02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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