9 lines
278 B
Plaintext
9 lines
278 B
Plaintext
|
#!/bin/bash
|
||
|
docker exec -i pmon sensors "$@"
|
||
|
|
||
|
#To probe sensors not part of lm-sensors
|
||
|
if [ -r /usr/local/bin/cameo_esc602_sensors.py ]; then
|
||
|
python /usr/local/bin/cameo_esc602_sensors.py fan_status
|
||
|
python /usr/local/bin/cameo_esc602_sensors.py sensor_status
|
||
|
fi
|