From 29f03c54c7df75d4fc7d43b33b3f005eae2c2e1d Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Wed, 9 Oct 2019 04:24:39 +0100 Subject: [PATCH] fix(map.jinja): fix `salt-lint` errors ```bash Examining collectd/map.jinja of type state [203] Most files should not contain tabs collectd/map.jinja:191 'host': 'localhost', [203] Most files should not contain tabs collectd/map.jinja:192 'port': 9200, [203] Most files should not contain tabs collectd/map.jinja:193 'cluster': 'elasticsearch', [203] Most files should not contain tabs collectd/map.jinja:194 'version': '1.0', [203] Most files should not contain tabs collectd/map.jinja:195 'verbose': 0 [203] Most files should not contain tabs collectd/map.jinja:198 'host': 'localhost', [203] Most files should not contain tabs collectd/map.jinja:199 'port': 6379, [203] Most files should not contain tabs collectd/map.jinja:200 'verbose': 0 ``` --- collectd/map.jinja | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/collectd/map.jinja b/collectd/map.jinja index dbb840a..6959c31 100644 --- a/collectd/map.jinja +++ b/collectd/map.jinja @@ -188,16 +188,16 @@ 'Interactive': 'false' }, 'elasticsearch': { - 'host': 'localhost', - 'port': 9200, - 'cluster': 'elasticsearch', - 'version': '1.0', - 'verbose': 0 + 'host': 'localhost', + 'port': 9200, + 'cluster': 'elasticsearch', + 'version': '1.0', + 'verbose': 0 }, 'redis_info': { - 'host': 'localhost', - 'port': 6379, - 'verbose': 0 + 'host': 'localhost', + 'port': 6379, + 'verbose': 0 }, 'rrdtool': { 'datadir': '/var/lib/collectd/rrd',