Skip to content

Commit

Permalink
fix(repo.sls): fix salt-lint errors
Browse files Browse the repository at this point in the history
```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
```
  • Loading branch information
myii committed Oct 9, 2019
1 parent 4e48a7a commit b4d994c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/hhvm/repo.sls
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include:
hhvm_repo:
pkgrepo.managed:
- name: deb http://dl.hhvm.com/{{ salt['grains.get']('os')|lower }} {{ salt['grains.get']('oscodename')}} main
- name: deb http://dl.hhvm.com/{{ salt['grains.get']('os')|lower }} {{ salt['grains.get']('oscodename') }} main
- file: /etc/apt/sources.list.d/hhvm.list
- keyid: 0x5a16e7281be7a449
- keyserver: keyserver.ubuntu.com
Expand Down

0 comments on commit b4d994c

Please sign in to comment.