1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fix icmp-type

This commit is contained in:
Pavel Samokha 2016-05-13 16:49:58 +03:00 committed by Matt Clay
parent 90aad93949
commit 945862b876

View file

@ -347,7 +347,7 @@ def construct_rule(params):
append_param(rule, params['uid_owner'], '--uid-owner', False)
append_jump(rule, params['reject_with'], 'REJECT')
append_param(rule, params['reject_with'], '--reject-with', False)
append_param(rule, params['icmp_type'], '--icmp_type', False)
append_param(rule, params['icmp_type'], '--icmp-type', False)
return rule