mirror of https://github.com/ceph/ceph-ansible.git
10 lines
499 B
YAML
10 lines
499 B
YAML
---
|
|
- name: install ceph for debian
|
|
apt:
|
|
name: "{{ debian_ceph_pkgs | unique }}"
|
|
update_cache: no
|
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
|
default_release: "{{ ceph_stable_release_uca | default('') if ceph_origin == 'repository' and ceph_repository == 'uca' else '' }}{{ ansible_facts['distribution_release'] ~ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports | bool else '' }}"
|
|
register: result
|
|
until: result is succeeded
|