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
exim/config/aliases.sls:57
  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 88c4ccb commit 9e59a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exim/config/aliases.sls
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ exim/virtual-aliases/{{ domain }}:
{%- endfor %}
exim/newaliases:
cmd.wait:
cmd.wait: # noqa: 213
- name: newaliases

0 comments on commit 9e59a20

Please sign in to comment.