From b4d994cc09c0ef11b13361f775346e9cb0035e3a Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Wed, 9 Oct 2019 15:52:10 +0100 Subject: [PATCH] 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 ``` --- php/hhvm/repo.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/hhvm/repo.sls b/php/hhvm/repo.sls index 84c2b61..bea7f7f 100644 --- a/php/hhvm/repo.sls +++ b/php/hhvm/repo.sls @@ -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