rhsm_repository: Properly handle no repos (#51938)

When no repos are defined, the `repo` variable is undefined. Therefore
append it only to the result if a repo was found. Otherwise Ansible will
fail with an UnboundLocalError.
This commit is contained in:
Till Maas 2019-02-22 12:44:18 +01:00 committed by John R Barker
parent 428f5d678e
commit 0469134f16
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- rhsm_repository - handle systems without any repos

View file

@ -160,7 +160,7 @@ def get_repository_list(module, list_parameter):
"enabled": True if repo_enabled == '1' else False
}
repo_result.append(repo)
repo_result.append(repo)
return repo_result