From 77edd3d40ad0c8fcbf2bd4fc240a646282a1181a Mon Sep 17 00:00:00 2001 From: Daniel Marks Date: Wed, 15 Mar 2017 14:15:15 +0100 Subject: [PATCH] Fixing tabs that are breaking the syntax check With the merge of PR #1336 the syntax check fails. This commit replaces the tabs with proper indentation. --- infrastructure-playbooks/make-osd-partitions.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure-playbooks/make-osd-partitions.yml b/infrastructure-playbooks/make-osd-partitions.yml index c4ba15a5d..d348cb380 100644 --- a/infrastructure-playbooks/make-osd-partitions.yml +++ b/infrastructure-playbooks/make-osd-partitions.yml @@ -31,15 +31,15 @@ - "{{ osd_group_name }}" tasks: - + - name: load a variable file for devices partition -   include_vars: "{{ item }}" -   with_first_found: + include_vars: "{{ item }}" + with_first_found: - files: - "host_vars/{{ ansible_hostname }}.yml" - "host_vars/default.yml" skip: true - + - name: exit playbook, if devices not defined fail: msg: "devices must be define in host_vars/default.yml or host_vars/{{ ansible_hostname }}.yml"