mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #1036 from analbeard/master
forced an apt-get update prior to installing any packages from Ceph r…pull/1039/head
commit
0cda86b1dc
|
@ -14,6 +14,7 @@
|
|||
- name: install ceph
|
||||
apt:
|
||||
name: "{{ item }}"
|
||||
update_cache: yes
|
||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||
default_release: "{{ ceph_stable_release_uca | default(ansible_distribution_release) }}{{ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else ''}}"
|
||||
with_items: "{{debian_ceph_packages}}"
|
||||
|
|
Loading…
Reference in New Issue