Skip to content

Commit

Permalink
chore(salt-lint): ignore violation [skip ci]
Browse files Browse the repository at this point in the history
```
[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.
  • Loading branch information
myii committed Feb 12, 2022
1 parent e829429 commit a669353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ufw/service/reload.sls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{%- if ufw.get('enabled', False) %}
reload-ufw:
cmd.wait:
cmd.wait: # noqa: 213
- name: ufw reload
{%- endif %}

0 comments on commit a669353

Please sign in to comment.