]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
the ceph package does not exist in jewel rh storage
authorAndrew Schoen <aschoen@redhat.com>
Tue, 8 Mar 2016 22:05:19 +0000 (16:05 -0600)
committerAndrew Schoen <aschoen@redhat.com>
Tue, 8 Mar 2016 22:06:56 +0000 (16:06 -0600)
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
roles/ceph-common/tasks/installs/install_rh_storage_on_debian.yml

index a93da143594474b8ab1e68736d1df81ca0e60bc7..2128733fb7383d4b3f0775b8bd4e1ef4649c87be 100644 (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