2017-05-08 17:43:31 -05:00
|
|
|
[supervisord]
|
|
|
|
logfile_maxbytes=1MB
|
|
|
|
logfile_backups=2
|
|
|
|
nodaemon=true
|
|
|
|
|
2020-05-15 19:09:16 -05:00
|
|
|
[eventlistener:dependent-startup]
|
2020-11-20 01:41:32 -06:00
|
|
|
command=python3 -m supervisord_dependent_startup
|
2020-05-15 19:09:16 -05:00
|
|
|
autostart=true
|
|
|
|
autorestart=unexpected
|
|
|
|
startretries=0
|
|
|
|
exitcodes=0,3
|
|
|
|
events=PROCESS_STATE
|
[dockers][supervisor] Increase event buffer size for process exit listener; Set all event buffer sizes to 1024 (#7083)
To prevent error [messages](https://dev.azure.com/mssonic/build/_build/results?buildId=2254&view=logs&j=9a13fbcd-e92d-583c-2f89-d81f90cac1fd&t=739db6ba-1b35-5485-5697-de102068d650&l=802) like the following from being logged:
```
Mar 17 02:33:48.523153 vlab-01 INFO swss#supervisord 2021-03-17 02:33:48,518 ERRO pool supervisor-proc-exit-listener event buffer overflowed, discarding event 46
```
This is basically an addendum to https://github.com/Azure/sonic-buildimage/pull/5247, which increased the event buffer size for dependent-startup. While supervisor-proc-exit-listener doesn't subscribe to as many events as dependent-startup, there is still a chance some containers (like swss, as in the example above) have enough processes running to cause an overflow of the default buffer size of 10.
This is especially important for preventing erroneous log_analyzer failures in the sonic-mgmt repo regression tests, which have started occasionally causing PR check builds to fail. Example [here](https://dev.azure.com/mssonic/build/_build/results?buildId=2254&view=logs&j=9a13fbcd-e92d-583c-2f89-d81f90cac1fd&t=739db6ba-1b35-5485-5697-de102068d650&l=802).
I set all supervisor-proc-exit-listener event buffer sizes to 1024, and also updated all dependent-startup event buffer sizes to 1024, as well, to keep things simple, unified, and allow headroom so that we will not need to adjust these values frequently, if at all.
2021-03-27 23:14:24 -05:00
|
|
|
buffer_size=1024
|
2020-05-15 19:09:16 -05:00
|
|
|
|
2019-05-01 10:02:38 -05:00
|
|
|
[eventlistener:supervisor-proc-exit-listener]
|
2020-02-07 14:34:07 -06:00
|
|
|
command=/usr/bin/supervisor-proc-exit-listener --container-name swss
|
2023-06-12 19:53:54 -05:00
|
|
|
events=PROCESS_STATE_EXITED,PROCESS_STATE_RUNNING,PROCESS_COMMUNICATION_STDOUT
|
2019-05-01 10:02:38 -05:00
|
|
|
autostart=true
|
|
|
|
autorestart=unexpected
|
[dockers][supervisor] Increase event buffer size for process exit listener; Set all event buffer sizes to 1024 (#7083)
To prevent error [messages](https://dev.azure.com/mssonic/build/_build/results?buildId=2254&view=logs&j=9a13fbcd-e92d-583c-2f89-d81f90cac1fd&t=739db6ba-1b35-5485-5697-de102068d650&l=802) like the following from being logged:
```
Mar 17 02:33:48.523153 vlab-01 INFO swss#supervisord 2021-03-17 02:33:48,518 ERRO pool supervisor-proc-exit-listener event buffer overflowed, discarding event 46
```
This is basically an addendum to https://github.com/Azure/sonic-buildimage/pull/5247, which increased the event buffer size for dependent-startup. While supervisor-proc-exit-listener doesn't subscribe to as many events as dependent-startup, there is still a chance some containers (like swss, as in the example above) have enough processes running to cause an overflow of the default buffer size of 10.
This is especially important for preventing erroneous log_analyzer failures in the sonic-mgmt repo regression tests, which have started occasionally causing PR check builds to fail. Example [here](https://dev.azure.com/mssonic/build/_build/results?buildId=2254&view=logs&j=9a13fbcd-e92d-583c-2f89-d81f90cac1fd&t=739db6ba-1b35-5485-5697-de102068d650&l=802).
I set all supervisor-proc-exit-listener event buffer sizes to 1024, and also updated all dependent-startup event buffer sizes to 1024, as well, to keep things simple, unified, and allow headroom so that we will not need to adjust these values frequently, if at all.
2021-03-27 23:14:24 -05:00
|
|
|
buffer_size=1024
|
2019-05-01 10:02:38 -05:00
|
|
|
|
2017-05-08 17:43:31 -05:00
|
|
|
[program:rsyslogd]
|
2020-05-15 19:09:16 -05:00
|
|
|
command=/usr/sbin/rsyslogd -n -iNONE
|
|
|
|
priority=1
|
2017-05-08 17:43:31 -05:00
|
|
|
autostart=false
|
2019-05-01 10:02:38 -05:00
|
|
|
autorestart=unexpected
|
2017-05-08 17:43:31 -05:00
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
2017-05-08 17:43:31 -05:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% set is_fabric_asic = 0 %}
|
|
|
|
{% set orchagent_dependent_startup_wait_for = "portsyncd:running" %}
|
|
|
|
{% if DEVICE_METADATA.localhost.switch_type %}
|
|
|
|
{% if DEVICE_METADATA.localhost.switch_type == "fabric" %}
|
|
|
|
{% set is_fabric_asic = 1 %}
|
|
|
|
{% set orchagent_dependent_startup_wait_for = "rsyslogd:running" %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- endif %}
|
2022-06-28 10:45:52 -05:00
|
|
|
{% set asan_extra_options = ':print_suppressions=0' %}
|
2021-06-09 12:53:47 -05:00
|
|
|
|
|
|
|
{% if is_fabric_asic == 0 %}
|
Add gearbox phy device files and a new physyncd docker to support VS gearbox phy feature (#4851)
* buildimage: Add gearbox phy device files and a new physyncd docker to support VS gearbox phy feature
* scripts and configuration needed to support a second syncd docker (physyncd)
* physyncd supports gearbox device and phy SAI APIs and runs multiple instances of syncd, one per phy in the device
* support for VS target (sonic-sairedis vslib has been extended to support a virtual BCM81724 gearbox PHY).
HLD is located at https://github.com/Azure/SONiC/blob/b817a12fd89520d3fd26bbc5897487928e7f6de7/doc/gearbox/gearbox_mgr_design.md
**- Why I did it**
This work is part of the gearbox phy joint effort between Microsoft and Broadcom, and is based
on multi-switch support in sonic-sairedis.
**- How I did it**
Overall feature was implemented across several projects. The collective pull requests (some in late stages of review at this point):
https://github.com/Azure/sonic-utilities/pull/931 - CLI (merged)
https://github.com/Azure/sonic-swss-common/pull/347 - Minor changes (merged)
https://github.com/Azure/sonic-swss/pull/1321 - gearsyncd, config parsers, changes to orchargent to create gearbox phy on supported systems
https://github.com/Azure/sonic-sairedis/pull/624 - physyncd, virtual BCM81724 gearbox phy added to vslib
**- How to verify it**
In a vslib build:
root@sonic:/home/admin# show gearbox interfaces status
PHY Id Interface MAC Lanes MAC Lane Speed PHY Lanes PHY Lane Speed Line Lanes Line Lane Speed Oper Admin
-------- ----------- --------------- ---------------- --------------- ---------------- ------------ ----------------- ------ -------
1 Ethernet48 121,122,123,124 25G 200,201,202,203 25G 204,205 50G down down
1 Ethernet49 125,126,127,128 25G 206,207,208,209 25G 210,211 50G down down
1 Ethernet50 69,70,71,72 25G 212,213,214,215 25G 216 100G down down
In addition, docker ps | grep phy should show a physyncd docker running.
Signed-off-by: syd.logan@broadcom.com
2020-09-25 10:32:44 -05:00
|
|
|
[program:gearsyncd]
|
|
|
|
command=/usr/bin/gearsyncd -p /usr/share/sonic/hwsku/gearbox_config.json
|
|
|
|
priority=3
|
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
startsecs=0
|
|
|
|
startretries=0
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=rsyslogd:running
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/gearsyncd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
Add gearbox phy device files and a new physyncd docker to support VS gearbox phy feature (#4851)
* buildimage: Add gearbox phy device files and a new physyncd docker to support VS gearbox phy feature
* scripts and configuration needed to support a second syncd docker (physyncd)
* physyncd supports gearbox device and phy SAI APIs and runs multiple instances of syncd, one per phy in the device
* support for VS target (sonic-sairedis vslib has been extended to support a virtual BCM81724 gearbox PHY).
HLD is located at https://github.com/Azure/SONiC/blob/b817a12fd89520d3fd26bbc5897487928e7f6de7/doc/gearbox/gearbox_mgr_design.md
**- Why I did it**
This work is part of the gearbox phy joint effort between Microsoft and Broadcom, and is based
on multi-switch support in sonic-sairedis.
**- How I did it**
Overall feature was implemented across several projects. The collective pull requests (some in late stages of review at this point):
https://github.com/Azure/sonic-utilities/pull/931 - CLI (merged)
https://github.com/Azure/sonic-swss-common/pull/347 - Minor changes (merged)
https://github.com/Azure/sonic-swss/pull/1321 - gearsyncd, config parsers, changes to orchargent to create gearbox phy on supported systems
https://github.com/Azure/sonic-sairedis/pull/624 - physyncd, virtual BCM81724 gearbox phy added to vslib
**- How to verify it**
In a vslib build:
root@sonic:/home/admin# show gearbox interfaces status
PHY Id Interface MAC Lanes MAC Lane Speed PHY Lanes PHY Lane Speed Line Lanes Line Lane Speed Oper Admin
-------- ----------- --------------- ---------------- --------------- ---------------- ------------ ----------------- ------ -------
1 Ethernet48 121,122,123,124 25G 200,201,202,203 25G 204,205 50G down down
1 Ethernet49 125,126,127,128 25G 206,207,208,209 25G 210,211 50G down down
1 Ethernet50 69,70,71,72 25G 212,213,214,215 25G 216 100G down down
In addition, docker ps | grep phy should show a physyncd docker running.
Signed-off-by: syd.logan@broadcom.com
2020-09-25 10:32:44 -05:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2020-06-25 00:48:37 -05:00
|
|
|
[program:portsyncd]
|
|
|
|
command=/usr/bin/portsyncd
|
2017-05-08 17:43:31 -05:00
|
|
|
priority=3
|
|
|
|
autostart=false
|
2017-05-09 19:37:08 -05:00
|
|
|
autorestart=false
|
2017-05-08 17:43:31 -05:00
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=rsyslogd:running
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/portsyncd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2017-05-08 17:43:31 -05:00
|
|
|
|
2020-06-25 00:48:37 -05:00
|
|
|
[program:orchagent]
|
|
|
|
command=/usr/bin/orchagent.sh
|
|
|
|
priority=4
|
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
2023-06-12 19:53:54 -05:00
|
|
|
stdout_capture_maxbytes=1MB
|
2020-06-25 00:48:37 -05:00
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
dependent_startup=true
|
2021-06-09 12:53:47 -05:00
|
|
|
dependent_startup_wait_for={{ orchagent_dependent_startup_wait_for }}
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/orchagent-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2020-06-25 00:48:37 -05:00
|
|
|
|
2020-09-24 16:57:42 -05:00
|
|
|
[program:swssconfig]
|
|
|
|
command=/usr/bin/swssconfig.sh
|
2020-06-25 00:48:37 -05:00
|
|
|
priority=5
|
2017-05-11 13:18:10 -05:00
|
|
|
autostart=false
|
2020-09-24 16:57:42 -05:00
|
|
|
autorestart=unexpected
|
2020-05-15 19:09:16 -05:00
|
|
|
startretries=0
|
2020-09-24 16:57:42 -05:00
|
|
|
startsecs=0
|
2017-05-11 13:18:10 -05:00
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=orchagent:running
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/swssconfig-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2017-05-11 13:18:10 -05:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2020-09-24 16:57:42 -05:00
|
|
|
[program:restore_neighbors]
|
|
|
|
command=/usr/bin/restore_neighbors.py
|
2019-01-13 08:04:39 -06:00
|
|
|
priority=6
|
2017-05-11 13:18:10 -05:00
|
|
|
autostart=false
|
2020-09-24 16:57:42 -05:00
|
|
|
autorestart=false
|
2018-10-23 01:40:24 -05:00
|
|
|
startsecs=0
|
2020-09-24 16:57:42 -05:00
|
|
|
startretries=0
|
2017-05-11 13:18:10 -05:00
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
2020-09-24 16:57:42 -05:00
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2017-05-11 13:18:10 -05:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2020-11-23 11:31:42 -06:00
|
|
|
[program:coppmgrd]
|
|
|
|
command=/usr/bin/coppmgrd
|
|
|
|
priority=6
|
|
|
|
autostart=false
|
2021-02-12 12:59:29 -06:00
|
|
|
autorestart=false
|
2020-11-23 11:31:42 -06:00
|
|
|
startretries=0
|
|
|
|
startsecs=0
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=orchagent:running
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/coppmgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2020-11-23 11:31:42 -06:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2020-05-15 19:09:16 -05:00
|
|
|
[program:neighsyncd]
|
|
|
|
command=/usr/bin/neighsyncd
|
2020-06-25 00:48:37 -05:00
|
|
|
priority=7
|
2020-05-15 19:09:16 -05:00
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/neighsyncd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2017-11-06 00:37:16 -06:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2017-11-06 00:37:16 -06:00
|
|
|
[program:vlanmgrd]
|
|
|
|
command=/usr/bin/vlanmgrd
|
2019-01-13 08:04:39 -06:00
|
|
|
priority=8
|
2017-11-06 00:37:16 -06:00
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/vlanmgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2017-11-06 00:37:16 -06:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2017-11-06 00:37:16 -06:00
|
|
|
[program:intfmgrd]
|
|
|
|
command=/usr/bin/intfmgrd
|
2019-01-13 08:04:39 -06:00
|
|
|
priority=9
|
2017-11-06 00:37:16 -06:00
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/intfmgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2018-01-29 10:11:05 -06:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2018-08-20 13:19:16 -05:00
|
|
|
[program:portmgrd]
|
|
|
|
command=/usr/bin/portmgrd
|
2019-01-13 08:04:39 -06:00
|
|
|
priority=10
|
2018-08-20 13:19:16 -05:00
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/portmgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2018-08-20 13:19:16 -05:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2018-01-29 10:11:05 -06:00
|
|
|
[program:buffermgrd]
|
2020-12-13 13:35:39 -06:00
|
|
|
command=/usr/bin/buffermgrd.sh
|
2019-01-13 08:04:39 -06:00
|
|
|
priority=11
|
2018-01-29 10:11:05 -06:00
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/buffermgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2018-09-20 00:18:39 -05:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2018-09-20 00:18:39 -05:00
|
|
|
[program:vrfmgrd]
|
|
|
|
command=/usr/bin/vrfmgrd
|
2019-01-13 08:04:39 -06:00
|
|
|
priority=13
|
2018-09-20 00:18:39 -05:00
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/vrfmgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2018-11-09 19:06:09 -06:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2018-11-28 23:58:59 -06:00
|
|
|
[program:nbrmgrd]
|
|
|
|
command=/usr/bin/nbrmgrd
|
2019-01-13 08:04:39 -06:00
|
|
|
priority=15
|
2018-11-28 23:58:59 -06:00
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/nbrmgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2018-11-28 23:58:59 -06:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2019-04-23 22:38:08 -05:00
|
|
|
[program:vxlanmgrd]
|
|
|
|
command=/usr/bin/vxlanmgrd
|
|
|
|
priority=16
|
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
2020-05-15 19:09:16 -05:00
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/vxlanmgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2020-05-15 19:09:16 -05:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2020-12-26 13:17:18 -06:00
|
|
|
[program:tunnelmgrd]
|
|
|
|
command=/usr/bin/tunnelmgrd
|
|
|
|
priority=17
|
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/tunnelmgrd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|
2020-12-26 13:17:18 -06:00
|
|
|
|
2020-05-15 19:09:16 -05:00
|
|
|
[program:enable_counters]
|
|
|
|
command=/usr/bin/enable_counters.py
|
|
|
|
priority=12
|
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2020-12-24 20:36:01 -06:00
|
|
|
|
2021-06-09 12:53:47 -05:00
|
|
|
{% if is_fabric_asic == 0 %}
|
2020-12-24 20:36:01 -06:00
|
|
|
[program:fdbsyncd]
|
|
|
|
command=/usr/bin/fdbsyncd
|
|
|
|
priority=17
|
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
dependent_startup=true
|
|
|
|
dependent_startup_wait_for=swssconfig:exited
|
2022-02-09 05:29:18 -06:00
|
|
|
{% if ENABLE_ASAN == "y" %}
|
2022-06-28 10:45:52 -05:00
|
|
|
environment=ASAN_OPTIONS="log_path=/var/log/asan/fdbsyncd-asan.log{{ asan_extra_options }}"
|
2022-02-09 05:29:18 -06:00
|
|
|
{% endif %}
|
2021-06-09 12:53:47 -05:00
|
|
|
{%- endif %}
|