Merge "Fix YAML indentation"

This commit is contained in:
Zuul 2019-04-16 17:34:26 +00:00 committed by Gerrit Code Review
commit 6b17525b93

View File

@ -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'