9b27efdcc2
The -sv2 suffix was used to differentiate SNMP Dockers when we transitioned from "SONiCv1" to "SONiCv2", about four years ago. The old Docker materials were removed long ago; there is no need to keep this suffix. Removing it aligns the name with all the other Dockers.
6 lines
239 B
Bash
Executable File
6 lines
239 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#Generate supervisord.conf based on device metadata
|
|
mkdir -p /etc/supervisor/conf.d/
|
|
sonic-cfggen -d -t /usr/share/sonic/templates/supervisord.conf.j2 > /etc/supervisor/conf.d/supervisord.conf
|
|
exec /usr/bin/supervisord
|