Sfoglia il codice sorgente

chore(salt-lint): ignore violation [skip ci]

```
[213] SaltStack recommends using cmd.run together with onchanges, rather than cmd.wait
ufw/service/reload.sls:11
  cmd.wait:
```

Usually fix:

* `cmd.wait` + `watch`

To:

* `cmd.run` + `onchanges`

But this code doesn't use that construction, so leaving as-is.
master
Imran Iqbal 2 anni fa
parent
commit
a6693531f3
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      ufw/service/reload.sls

+ 1
- 1
ufw/service/reload.sls Vedi File

@@ -8,7 +8,7 @@
{%- if ufw.get('enabled', False) %}

reload-ufw:
cmd.wait:
cmd.wait: # noqa: 213
- name: ufw reload

{%- endif %}

Loading…
Annulla
Salva