From cdf4df577aa981c0761c38632d1d246fafea18d3 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Mon, 10 Jun 2019 20:20:24 +0200
Subject: [PATCH] ansible-playbooks/general#85 Linting [skip-ci]

---
 tasks/main.yml | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/tasks/main.yml b/tasks/main.yml
index e73b71c..db352d2 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -9,19 +9,19 @@
 
 - block:
 
-  - name: Install Plugins
-    command: td-agent-gem install {{ item }}
-    with_items:
-      - fluent-plugin-elasticsearch
-      - fluent-plugin-elasticsearch-timestamp-check
-      - fluent-plugin-kvp-filter
+    - name: Install Plugins
+      command: td-agent-gem install {{ item }}
+      with_items:
+        - fluent-plugin-elasticsearch
+        - fluent-plugin-elasticsearch-timestamp-check
+        - fluent-plugin-kvp-filter
 
-  - name: Copy SSL Key
-    copy:
-      src='{{ inventory_dir }}/files/ssl/td-agent/key.pem'
-      dest='/etc/ssl/td-agent/key.pem'
-      owner='root'
-      group='root'
-      mode='644'
+    - name: Copy SSL Key
+      copy:
+        src: '{{ inventory_dir }}/files/ssl/td-agent/key.pem'
+        dest: /etc/ssl/td-agent/key.pem
+        owner: root
+        group: root
+        mode: 644
 
   when: not excluded_roles or "fluentd" not in excluded_roles and inventory_hostname in groups.logserver
-- 
GitLab