Merge pull request #321 from ceph/do-not-use-latest

Do not use latest package
pull/323/head
Leseb 2015-07-07 10:41:11 +02:00
commit 2dd12c93e1
2 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@
- name: install Ceph - name: install Ceph
apt: > apt: >
pkg={{ item }} pkg={{ item }}
state=latest state=present
with_items: with_items:
- ceph - ceph
- ceph-common #| - ceph-common #|

View File

@ -69,13 +69,13 @@
- name: install Ceph - name: install Ceph
yum: > yum: >
name=ceph name=ceph
state=latest state=present
when: not ceph_stable_rh_storage when: not ceph_stable_rh_storage
- name: install red hat storage ceph mon - name: install red hat storage ceph mon
yum: > yum: >
name={{ item }} name={{ item }}
state=latest state=present
with_items: with_items:
- ceph - ceph
- ceph-mon - ceph-mon
@ -86,7 +86,7 @@
- name: install red hat storage ceph osd - name: install red hat storage ceph osd
yum: > yum: >
name={{ item }} name={{ item }}
state=latest state=present
with_items: with_items:
- ceph - ceph
- ceph-osd - ceph-osd