Merge pull request #23322 from thusoy/patch-3

Silence iptables checks
This commit is contained in:
Justin Findlay 2015-05-04 09:00:12 -06:00
commit 83b62b47d9

View file

@ -486,7 +486,7 @@ def check(table='filter', chain=None, rule=None, family='ipv4'):
if _has_option('--check', family):
cmd = '{0} -t {1} -C {2} {3}'.format(ipt_cmd, table, chain, rule)
out = __salt__['cmd.run'](cmd)
out = __salt__['cmd.run'](cmd, output_loglevel='quiet')
else:
_chain_name = hex(uuid.getnode())