mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
16 lines
430 B
Django/Jinja
16 lines
430 B
Django/Jinja
{% set HYPERVISORS = salt['pillar.get']('hypervisor:nodes', {}) %}
|
|
|
|
{# Define the list of process steps in order (case-sensitive) #}
|
|
{% set PROCESS_STEPS = [
|
|
'Processing',
|
|
'Volume nsm Create Failed',
|
|
'IP Configuration',
|
|
'Starting Create',
|
|
'Executing Deploy Script',
|
|
'Initialize Minion Pillars',
|
|
'Created Instance',
|
|
'Hardware Configuration',
|
|
'Highstate Initiated',
|
|
'Destroyed Instance'
|
|
] %}
|