From 3a61e7de16f0913de14c638cdfa11f2f2cb7ea14 Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Fri, 11 Feb 2022 22:21:00 +0000 Subject: [PATCH] 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. --- firewalld/init.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firewalld/init.sls b/firewalld/init.sls index ab4c506..8e4aec8 100644 --- a/firewalld/init.sls +++ b/firewalld/init.sls @@ -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