Fix seport module issue when ports argument is interpolated from a variable and is a int
This commit is contained in:
parent
23675c3f8b
commit
855bf75709
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue