While re-running the playbook we do not want to check for new packages.
We shouldn't perform upgrades, we leave this to the operators.
Signed-off-by: leseb <seb@redhat.com>
- name: install Ceph
apt: >
pkg={{ item }}
- state=latest
+ state=present
with_items:
- ceph
- ceph-common #|
- name: install Ceph
yum: >
name=ceph
- state=latest
+ state=present
when: not ceph_stable_rh_storage
- name: install red hat storage ceph mon
yum: >
name={{ item }}
- state=latest
+ state=present
with_items:
- ceph
- ceph-mon
- name: install red hat storage ceph osd
yum: >
name={{ item }}
- state=latest
+ state=present
with_items:
- ceph
- ceph-osd