Przeglądaj źródła

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

```
[213] SaltStack recommends using cmd.run together with onchanges, rather than cmd.wait
firewalld/init.sls:53
  cmd.wait:
```

Usually fix:

* `cmd.wait` + `watch`

To:

* `cmd.run` + `onchanges`

But this code doesn't use that construction, so leaving as-is.
pull/55/head
Imran Iqbal 2 lat temu
rodzic
commit
3a61e7de16
Brak konta powiązanego z adresem e-mail autora
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      firewalld/init.sls

+ 1
- 1
firewalld/init.sls Wyświetl plik

@@ -50,7 +50,7 @@ service_firewalld:
- service: ip6tables # ensure it's stopped

reload_firewalld:
cmd.wait:
cmd.wait: # noqa: 213
- name: 'firewall-cmd --reload'
- require:
- service: service_firewalld

Ładowanie…
Anuluj
Zapisz