Skip to content

Commit

Permalink
fix(init.sls): fix salt-lint errors
Browse files Browse the repository at this point in the history
```bash
Examining zabbix/proxy/init.sls of type state
[201] Trailing whitespace
zabbix/proxy/init.sls:47
{% if zabbix.proxy.dbname.startswith('/') -%}
```
  • Loading branch information
myii committed Oct 12, 2019
1 parent 581a748 commit ff28364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zabbix/proxy/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ zabbix-proxy-piddir:
- pkg: zabbix-proxy
# basic check does 'dbname' looks like a file path
{% if zabbix.proxy.dbname.startswith('/') -%}
{% if zabbix.proxy.dbname.startswith('/') -%}
zabbix-proxy-sqlitedir:
file.directory:
- name: {{ salt['file.dirname'](zabbix.proxy.dbname) }}
Expand Down

0 comments on commit ff28364

Please sign in to comment.