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
13 lines
293 B
Bash
Executable File
13 lines
293 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Based off /etc/init.d/lm-sensors
|
|
#
|
|
|
|
/usr/bin/sensors -s > /dev/null 2>&1
|
|
/usr/bin/sensors > /dev/null 2>&1
|
|
|
|
# Currently, there is no way to run sensord in the foreground, so we
|
|
# can't use supervisord. Instead, we just start the service for now.
|
|
service sensord start
|
|
|