mirror of https://github.com/ceph/ceph-ansible.git
12 lines
390 B
YAML
12 lines
390 B
YAML
|
---
|
||
|
- name: configure debian ceph community repository stable key
|
||
|
apt_key:
|
||
|
data: "{{ lookup('file', role_path+'/files/cephstable.asc') }}"
|
||
|
state: present
|
||
|
|
||
|
- name: configure debian ceph stable community repository
|
||
|
apt_repository:
|
||
|
repo: "deb {{ ceph_stable_repo }} {{ ceph_stable_distro_source | default(ansible_lsb.codename) }} main"
|
||
|
state: present
|
||
|
changed_when: false
|