a2bee3abb7
to make sensors binaries not fail if no sensors was detected.
9 lines
159 B
Bash
Executable File
9 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
if /usr/bin/systemd-detect-virt 2>/dev/null 1>&2; then
|
|
SENSORS_FLAGS_VM='-n';
|
|
else
|
|
SENSORS_FLAGS_VM='';
|
|
fi;
|
|
|
|
/usr/bin/sensors -s $SENSORS_FLAGS_VM
|