Skip to content

Commit b0bbd0b

Browse files
committed
fix(vhosts/cleanup.sls): fix salt-lint errors
```bash Examining apache/vhosts/cleanup.sls of type state [206] Jinja variables should have spaces before and after: {{ var_name }} apache/vhosts/cleanup.sls:29 - onlyif: "test -L {{ dirpath}}/{{ filename }} || test -f {{ dirpath}}/{{ filename }}" ```
1 parent ed7dc7b commit b0bbd0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apache/vhosts/cleanup.sls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ include:
2626
2727
a2dissite {{ filename }}:
2828
cmd.run:
29-
- onlyif: "test -L {{ dirpath}}/{{ filename }} || test -f {{ dirpath}}/{{ filename }}"
29+
- onlyif: "test -L {{ dirpath }}/{{ filename }} || test -f {{ dirpath }}/{{ filename }}"
3030
- watch_in:
3131
- module: apache-reload
3232
- require_in:

0 commit comments

Comments
 (0)