Merge pull request #1499 from specnazzz/fix-seport-ports

seport module fails when the `ports` argument is a integer
reviewable/pr18780/r1
Brian Coca 9 years ago
commit a7ad0bc7be

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