From 7aacc2d53acb78b29c2d4e1b4908715074cc2caf Mon Sep 17 00:00:00 2001 From: Andrew Butcher Date: Tue, 24 Jan 2017 13:01:21 -0500 Subject: [os_firewall] Fix default iptables args. --- roles/os_firewall/library/os_firewall_manage_iptables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'roles/os_firewall') diff --git a/roles/os_firewall/library/os_firewall_manage_iptables.py b/roles/os_firewall/library/os_firewall_manage_iptables.py index 4ba38b721..8d4878fa7 100755 --- a/roles/os_firewall/library/os_firewall_manage_iptables.py +++ b/roles/os_firewall/library/os_firewall_manage_iptables.py @@ -224,8 +224,8 @@ class IpTablesManager(object): # pylint: disable=too-many-instance-attributes def gen_cmd(self): cmd = 'iptables' if self.ip_version == 'ipv4' else 'ip6tables' # Include -w (wait for xtables lock) in default arguments. - default_args = '-w' - return ["/usr/sbin/%s %s" % (cmd, default_args)] + default_args = ['-w'] + return ["/usr/sbin/%s" % cmd] + default_args def gen_save_cmd(self): # pylint: disable=no-self-use return ['/usr/libexec/iptables/iptables.init', 'save'] -- cgit v1.2.1