Fix YAML indentation

Trivial fix. This patch set fixes inconsistent indentations in YAML file.

Change-Id: I98ed9680d93f9c21e44b7da8462c9ce3607350bd
Signed-off-by: Tin Lam <tin@irrational.io>
This commit is contained in:
Tin Lam 2019-04-06 22:57:35 -05:00
parent 0b14152664
commit 36108b1db8

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'