661669c805
- Why I did it Remove dependency on interfaces-config.service to speed up boot, because interfaces-config.service takes a lot of time on boot. - How I did it Changed service files for swss, syncd. - How to verify it Boot and check swss/syncd start time comparing to interfaces-config Signed-off-by: Stepan Blyschak <stepanb@nvidia.com>
35 lines
1.1 KiB
Django/Jinja
35 lines
1.1 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.service
|
|
After=nps-modules.service
|
|
{% endif %}
|
|
Requires=updategraph.service
|
|
After=updategraph.service
|
|
BindsTo=sonic.target
|
|
After=sonic.target
|
|
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=480
|
|
{% endif %}
|
|
|
|
[Install]
|
|
WantedBy=sonic.target
|