made ctstate default to [] and evaluation conditional on the list being popoulated
This commit is contained in:
parent
fb3aec47ca
commit
61ba4b98e1
1 changed files with 3 additions and 2 deletions
|
@ -262,8 +262,9 @@ def construct_rule(params):
|
||||||
append_param(rule, params['to_ports'], '--to-ports', False)
|
append_param(rule, params['to_ports'], '--to-ports', False)
|
||||||
append_comm(rule, params['comment'])
|
append_comm(rule, params['comment'])
|
||||||
append_param(rule, params['comment'], '--comment', False)
|
append_param(rule, params['comment'], '--comment', False)
|
||||||
append_conntrack(rule, params['ctstate'])
|
if params['ctstate']:
|
||||||
append_param(rule, ','.join(params['ctstate']), '--ctstate', False)
|
append_conntrack(rule, params['ctstate'])
|
||||||
|
append_param(rule, ','.join(params['ctstate']), '--ctstate', False)
|
||||||
return rule
|
return rule
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue