Dmitry Tantsur 3696933285 Keep sushy-emulator state directory in /var/lib
By default it's in /tmp, which means that it can be removed on reboot
or even during normal operation (after some time).

Change-Id: Ib8e55dc9909381740d79fc660e46ecd329b89283
2021-07-28 18:44:00 +02:00

15 lines
370 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_LISTEN_IP = '{{ redfish_emulator_host }}'
SUSHY_EMULATOR_LISTEN_PORT = {{ redfish_emulator_port }}
SUSHY_EMULATOR_STATE_DIR = '{{ redfish_emulator_state_dir }}'