mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes GH-2559
This commit is contained in:
parent
d6f62694e2
commit
3c0a946f2d
1 changed files with 3 additions and 2 deletions
|
@ -263,10 +263,11 @@ def main():
|
|||
cmd.append([module.boolean(params['route']), 'route'])
|
||||
cmd.append([params['insert'], "insert %s" % params['insert']])
|
||||
cmd.append([value])
|
||||
cmd.append([params['direction'], "%s" % params['direction']])
|
||||
cmd.append([params['interface'], "on %s" % params['interface']])
|
||||
cmd.append([module.boolean(params['log']), 'log'])
|
||||
|
||||
for (key, template) in [('direction', "%s" ), ('interface', "on %s" ),
|
||||
('from_ip', "from %s" ), ('from_port', "port %s" ),
|
||||
for (key, template) in [('from_ip', "from %s" ), ('from_port', "port %s" ),
|
||||
('to_ip', "to %s" ), ('to_port', "port %s" ),
|
||||
('proto', "proto %s"), ('app', "app '%s'")]:
|
||||
|
||||
|
|
Loading…
Reference in a new issue