From ee2c730b7e55cfe26781895ee0520d351060c67a Mon Sep 17 00:00:00 2001 From: Michal Mach Date: Thu, 14 Jan 2016 11:47:19 +0100 Subject: [PATCH] Fix seport module issue when ports argument is interpolated from a variable and is a int --- system/seport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/seport.py b/system/seport.py index 8a512f04d61..7192f2726a2 100644 --- a/system/seport.py +++ b/system/seport.py @@ -234,7 +234,7 @@ def main(): if not selinux.is_selinux_enabled(): module.fail_json(msg="SELinux is disabled on this host.") - ports = [x.strip() for x in module.params['ports'].split(',')] + ports = [x.strip() for x in str(module.params['ports']).split(',')] proto = module.params['proto'] setype = module.params['setype'] state = module.params['state']