2018-03-21 11:28:23 -05:00
|
|
|
{# Get sai.profile based on switch_role #}
|
|
|
|
{%- if DEVICE_METADATA is defined -%}
|
|
|
|
{%- set switch_role = DEVICE_METADATA['localhost']['type'] -%}
|
|
|
|
{%- if switch_role.lower() == 'torrouter' %}
|
2018-08-20 12:11:11 -05:00
|
|
|
{% set sai_profile_contents = 'SAI_INIT_CONFIG_FILE=/usr/share/sonic/hwsku/th-s6100-64x40G-t0.config.bcm' -%}
|
2018-03-21 11:28:23 -05:00
|
|
|
{%- else %}
|
2018-08-20 12:11:11 -05:00
|
|
|
{%- set sai_profile_contents = 'SAI_INIT_CONFIG_FILE=/usr/share/sonic/hwsku/th-s6100-64x40G-t1.config.bcm' -%}
|
2018-03-21 11:28:23 -05:00
|
|
|
{%- endif %}
|
|
|
|
{%- else %}
|
2018-08-20 12:11:11 -05:00
|
|
|
{%- set sai_profile_contents = 'SAI_INIT_CONFIG_FILE=/usr/share/sonic/hwsku/th-s6100-64x40G-t1.config.bcm' -%}
|
2018-03-21 11:28:23 -05:00
|
|
|
{%- endif %}
|
|
|
|
{# Write the contents of sai_ profile_filename to sai.profile file #}
|
|
|
|
{{ sai_profile_contents }}
|