Skip to content

Commit

Permalink
fix(map.jinja): fix salt-lint errors
Browse files Browse the repository at this point in the history
```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
```
  • Loading branch information
myii committed Oct 9, 2019
1 parent f35133d commit 29f03c5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions collectd/map.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 29f03c5

Please sign in to comment.