the ceph package does not exist in jewel rh storage

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
pull/611/head
Andrew Schoen 2016-03-08 16:05:19 -06:00
parent 3035f45c51
commit e09bb11dc9
1 changed files with 2 additions and 8 deletions

View File

@ -9,21 +9,15 @@
- name: install red hat storage ceph mon
apt:
name: "{{ item }}"
name: ceph-mon
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
with_items:
- ceph
- ceph-mon
when:
mon_group_name in group_names
- name: install red hat storage ceph osd
apt:
name: "{{ item }}"
name: ceph-osd
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
with_items:
- ceph
- ceph-osd
when:
osd_group_name in group_names