Merge "Fix YAML indentation"
This commit is contained in:
commit
6b17525b93
@ -16,26 +16,26 @@
|
||||
- name: ubuntu | ensure community ceph repository key is installed
|
||||
when: ansible_distribution == 'Ubuntu'
|
||||
apt_key:
|
||||
id: "460F3994"
|
||||
keyserver: "keyserver.ubuntu.com"
|
||||
state: present
|
||||
id: "460F3994"
|
||||
keyserver: "keyserver.ubuntu.com"
|
||||
state: present
|
||||
|
||||
- name: ubuntu | ensure community ceph repository exists
|
||||
when: ansible_distribution == 'Ubuntu'
|
||||
apt_repository:
|
||||
repo: "deb https://download.ceph.com/debian-mimic/ {{ ansible_lsb.codename }} main"
|
||||
state: present
|
||||
update_cache: yes
|
||||
repo: "deb https://download.ceph.com/debian-mimic/ {{ ansible_lsb.codename }} main"
|
||||
state: present
|
||||
update_cache: yes
|
||||
|
||||
- name: centos | ensure community ceph repository exists
|
||||
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'
|
||||
yum_repository:
|
||||
name: ceph
|
||||
description: "Ceph community packages for Redhat/Centos"
|
||||
gpgkey: "https://download.ceph.com/keys/release.asc"
|
||||
baseurl: "https://download.ceph.com/rpm-mimic/el7/$basearch"
|
||||
gpgcheck: yes
|
||||
state: present
|
||||
name: ceph
|
||||
description: "Ceph community packages for Redhat/Centos"
|
||||
gpgkey: "https://download.ceph.com/keys/release.asc"
|
||||
baseurl: "https://download.ceph.com/rpm-mimic/el7/$basearch"
|
||||
gpgcheck: yes
|
||||
state: present
|
||||
|
||||
- name: centos | installing epel-release
|
||||
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'
|
||||
|
Loading…
Reference in New Issue
Block a user