b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | #!/bin/sh /etc/rc.common |
2 | # Copyright (C) 2017 Philip Prindeville, Redfish Solutions LLC | ||||
3 | |||||
4 | START=28 | ||||
5 | STOP= | ||||
6 | |||||
7 | PROG=/usr/sbin/sensors | ||||
8 | |||||
9 | start() { | ||||
10 | [ -f /etc/sensors.conf -o -f /etc/sensors3.conf ] || return | ||||
11 | |||||
12 | $PROG -s | ||||
13 | } | ||||
14 |