8f348399f5
- Consolidate config.sh and start.sh scripts into one script (start.sh) - Solve issue #435 - All dockers now run supervisord as their ENTRYPOINT - All stdout/stderr output from processes managed by supervisord is now sent to syslog instead of their own files - Supervisord log messages are now also sent to syslog - Removed unused smartmontools package from docker-platform-monitor
20 lines
392 B
Bash
Executable File
20 lines
392 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function clean_up {
|
|
service syncd stop
|
|
exit
|
|
}
|
|
|
|
trap clean_up SIGTERM SIGKILL
|
|
|
|
# fw-upgrade will exit if firmware was actually upgraded or if some error
|
|
# occures
|
|
. mlnx-fw-upgrade.sh
|
|
|
|
# FIXME: the script cannot trap SIGTERM signal and it exits without clean_up
|
|
# Remove rsyslogd.pid file manually so that to start the rsyslog instantly
|
|
service syncd start
|
|
|
|
read
|
|
|