6eca27e564
* [service] Restart SwSS Docker container if orchagent exits unexpectedly * Configure systemd to stop restarting swss if it attempts to restart more than 3 times in 20 minutes * Move supervisor-proc-exit-listener script * [docker-dhcp-relay] Enhance wait_for_intf.sh.j2 to utilize STATEDB * Ensure dependent services stop/start/restart with SwSS * Change 'StartLimitInterval' to 'StartLimitIntervalSec', as Stretch installs systemd 232 (>= v230) * Also update journald.conf options * Remove 'PartOf' option from unit files * Add '$(SUPERVISOR_PROC_EXIT_LISTENER_SCRIPT)' to new shared docker-orchagent makefile * Make supervisor-proc-exit-listener script read from 'critical_processes' file inside container * Update critical_processes file for swss container
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-8-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
|