c9483796dc
- move single instance services into their own folder - generate Systemd templates for any multi-instance service files in slave.mk - detect single or multi-instance platform in systemd-sonic-generator based on asic.conf platform specific file. - update container hostname after creation instead of during creation (docker_image_ctl) - run Docker containers in a network namespace if specified - add a service to create a simulated multi-ASIC topology on the virtual switch platform Signed-off-by: Lawrence Lee <t-lale@microsoft.com> Signed-off-by: Suvarna Meenakshi <Suvarna.Meenaksh@microsoft.com>
26 lines
671 B
Django/Jinja
26 lines
671 B
Django/Jinja
[Unit]
|
|
Description=switch state service
|
|
Requires=database.service updategraph.service
|
|
{% if sonic_asic_platform == 'broadcom' %}
|
|
Requires=opennsl-modules.service
|
|
{% elif sonic_asic_platform == 'nephos' %}
|
|
Requires=nps-modules-4.9.0-9-2-amd64.service
|
|
{% endif %}
|
|
After=database.service updategraph.service
|
|
After=interfaces-config.service
|
|
Before=ntp-config.service
|
|
StartLimitIntervalSec=1200
|
|
StartLimitBurst=3
|
|
|
|
[Service]
|
|
User=root
|
|
Environment=sonic_asic_platform={{ sonic_asic_platform }}
|
|
ExecStartPre=/usr/local/bin/swss.sh start
|
|
ExecStart=/usr/local/bin/swss.sh wait
|
|
ExecStop=/usr/local/bin/swss.sh stop
|
|
Restart=always
|
|
RestartSec=30
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|