mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Handle empty IPS publishers (#2047)
It turns out it's possible to set up a publisher with no URIs. Handle this gracefully.
This commit is contained in:
parent
83f263d132
commit
9b96585085
1 changed files with 3 additions and 2 deletions
|
@ -179,13 +179,14 @@ def get_publishers(module):
|
||||||
publishers[name]['origin'] = []
|
publishers[name]['origin'] = []
|
||||||
publishers[name]['mirror'] = []
|
publishers[name]['mirror'] = []
|
||||||
|
|
||||||
|
if values['type'] is not None:
|
||||||
publishers[name][values['type']].append(values['uri'])
|
publishers[name][values['type']].append(values['uri'])
|
||||||
|
|
||||||
return publishers
|
return publishers
|
||||||
|
|
||||||
|
|
||||||
def unstringify(val):
|
def unstringify(val):
|
||||||
if val == "-":
|
if val == "-" or val == '':
|
||||||
return None
|
return None
|
||||||
elif val == "true":
|
elif val == "true":
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue