Fix seport module issue when ports argument is interpolated from a variable and is a int

reviewable/pr18780/r1
Michal Mach 9 years ago
parent 38dfe23336
commit ee2c730b7e

@ -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']

Loading…
Cancel
Save