Dmitry Tantsur fe984d0d76 Enable authentication in sushy-tools
Change-Id: Iacfae6b27bcf4c410040d452c31f2e9e1aafe53c
2021-09-27 17:01:18 +02:00

18 lines
512 B
Django/Jinja

SUSHY_EMULATOR_BOOT_LOADER_MAP = {
{% if efi_loader_path is defined %}
'UEFI': {
'x86_64': '{{ efi_loader_path }}'
},
{% endif %}
'Legacy': {
'x86_64': None
}
}
SUSHY_EMULATOR_AUTH_FILE = '/etc/redfish-emulator.htpasswd'
SUSHY_EMULATOR_LISTEN_IP = '{{ redfish_emulator_host }}'
SUSHY_EMULATOR_LISTEN_PORT = {{ redfish_emulator_port }}
SUSHY_EMULATOR_STATE_DIR = '{{ redfish_emulator_state_dir }}'
# Sadly this is how real hardware works:
SUSHY_EMULATOR_VMEDIA_VERIFY_SSL = False