Skip to content

Commit b4d994c

Browse files
committed
fix(repo.sls): fix salt-lint errors
```bash Examining php/hhvm/repo.sls of type state [206] Jinja variables should have spaces before and after: {{ var_name }} php/hhvm/repo.sls:12 - name: deb http://dl.hhvm.com/{{ salt['grains.get']('os')|lower }} {{ salt['grains.get']('oscodename')}} main ```
1 parent 4e48a7a commit b4d994c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php/hhvm/repo.sls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include:
99
1010
hhvm_repo:
1111
pkgrepo.managed:
12-
- name: deb http://dl.hhvm.com/{{ salt['grains.get']('os')|lower }} {{ salt['grains.get']('oscodename')}} main
12+
- name: deb http://dl.hhvm.com/{{ salt['grains.get']('os')|lower }} {{ salt['grains.get']('oscodename') }} main
1313
- file: /etc/apt/sources.list.d/hhvm.list
1414
- keyid: 0x5a16e7281be7a449
1515
- keyserver: keyserver.ubuntu.com

0 commit comments

Comments
 (0)