4b8067e913
Changes made to support multi-asic platform. Added multi-instance support for swss, syncd, database, bgp, teamd and lldp.
34 lines
1.2 KiB
Django/Jinja
34 lines
1.2 KiB
Django/Jinja
[Unit]
|
|
Description=syncd service
|
|
Requires=database{% if multi_instance == 'true' %}@%i{% endif %}.service
|
|
After=database{% if multi_instance == 'true' %}@%i{% endif %}.service
|
|
After=swss{% if multi_instance == 'true' %}@%i{% endif %}.service
|
|
{% if multi_instance == 'true' and sonic_asic_platform == 'vs' %}
|
|
Requires=topology.service
|
|
After=topology.service
|
|
{% endif %}
|
|
{% if sonic_asic_platform == 'broadcom' %}
|
|
Requires=opennsl-modules.service
|
|
After=opennsl-modules.service
|
|
{% elif sonic_asic_platform == 'nephos' %}
|
|
Requires=nps-modules-4.9.0-11-2-amd64.service
|
|
After=nps-modules-4.9.0-11-2-amd64.service
|
|
{% endif %}
|
|
Requires=updategraph.service
|
|
After=updategraph.service
|
|
After=interfaces-config.service
|
|
Before=ntp-config.service
|
|
|
|
[Service]
|
|
User=root
|
|
Environment=sonic_asic_platform={{ sonic_asic_platform }}
|
|
ExecStartPre=/usr/local/bin/syncd.sh start{% if multi_instance == 'true' %} %i{% endif %}
|
|
ExecStart=/usr/local/bin/syncd.sh wait{% if multi_instance == 'true' %} %i{% endif %}
|
|
ExecStop=/usr/local/bin/syncd.sh stop{% if multi_instance == 'true' %} %i{% endif %}
|
|
{% if sonic_asic_platform == 'mellanox' %}
|
|
TimeoutStartSec=150
|
|
{% endif %}
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|