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.
This commit is contained in:
Imran Iqbal 2022-02-11 22:21:00 +00:00
parent b07b187d51
commit 3a61e7de16
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819
1 changed files with 1 additions and 1 deletions

View File

@ -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