[PMON] Skip chassis_db_init task on Mellanox simx platform (#9017)

Why I did it
"chassis_db_init" task of PMON should be skipped on Mellanox simx platform, since the hardware info which this task is trying to access is not available on simx platforms, It will introduce some error log.

How I did it
Add the capability for "chassis_db_init" in the template for it can be skipped by adding configuration in "pmon_daemon_control.json".
add "skip_chassis_db_init" configuration for simx platforms.
use symbol link for "pmon_daemon_control.json" since all the simx platforms share the same configuration
How to verify it
Build an image and install it on simx platform to check whether "chassis_db_init" task is skipped.

Signed-off-by: Kebo Liu <kebol@nvidia.com>
This commit is contained in:
Kebo Liu 2021-10-25 00:10:41 +08:00 committed by GitHub
parent bb9c36c2a3
commit 9c4a7c2fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 22 deletions

View File

@ -3,5 +3,6 @@
"skip_xcvrd": true,
"skip_psud": true,
"skip_pcied": true,
"skip_thermalctld": true
"skip_thermalctld": true,
"skip_chassis_db_init": true
}

View File

@ -1,7 +0,0 @@
{
"skip_ledd": true,
"skip_xcvrd": true,
"skip_psud": true,
"skip_pcied": true,
"skip_thermalctld": true
}

View File

@ -0,0 +1 @@
../x86_64-mlnx_msn2700_simx-r0/pmon_daemon_control.json

View File

@ -1,7 +0,0 @@
{
"skip_ledd": true,
"skip_xcvrd": true,
"skip_psud": true,
"skip_pcied": true,
"skip_thermalctld": true
}

View File

@ -0,0 +1 @@
../x86_64-mlnx_msn2700_simx-r0/pmon_daemon_control.json

View File

@ -1,7 +0,0 @@
{
"skip_ledd": true,
"skip_xcvrd": true,
"skip_psud": true,
"skip_pcied": true,
"skip_thermalctld": true
}

View File

@ -0,0 +1 @@
../x86_64-mlnx_msn2700_simx-r0/pmon_daemon_control.json

View File

@ -41,6 +41,7 @@ dependent_startup=true
dependent_startup_wait_for=rsyslogd:running
{% endif %}
{% if not skip_chassis_db_init %}
[program:chassis_db_init]
command=/usr/local/bin/chassis_db_init
priority=3
@ -51,6 +52,7 @@ stderr_logfile=syslog
startsecs=10
dependent_startup=true
dependent_startup_wait_for=rsyslogd:running
{% endif %}
{% if not skip_sensors and HAVE_SENSORS_CONF == 1 %}
[program:lm-sensors]