mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-26 03:23:08 +08:00
Fix KeyError issue with relay_inbound and relay_outbound settings
This commit is contained in:
committed by
Kevin Fenzi
parent
a901cb2093
commit
a4d4c044c8
@@ -51,6 +51,6 @@ else:
|
||||
config['endpoints']['relay_outbound'] = ["tcp://127.0.0.1:4001"]
|
||||
config['relay_inbound'] = ["tcp://127.0.0.1:2003"]
|
||||
{% else %}
|
||||
config['endpoints']['relay_outbound'].append('tcp://172.25.32.175:4001')
|
||||
config['relay_inbound'].append('tcp://172.25.32.175:2003')
|
||||
config['endpoints']['relay_outbound'] = ['tcp://172.25.32.175:4001']
|
||||
config['relay_inbound'] = ['tcp://172.25.32.175:2003']
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user