Bugfix: Temperature didnt get any data because the regex was not complete.
This commit is contained in:
parent
4769bd01cd
commit
bcaa75ae51
|
@ -56,7 +56,7 @@ sub getdata {
|
|||
my ($value);
|
||||
#print $stdout;
|
||||
foreach (split(/\n/, $stdout)) {
|
||||
if (/^$searchpattern\s*:\s*(.*)\s(Percent Load Capacity|Percent|Minutes|Seconds|Volts|Hz|seconds)/i) {
|
||||
if (/^$searchpattern\s*:\s*(.*)\s(Percent Load Capacity|Percent|Minutes|Seconds|Volts|Hz|seconds|C Internal|F Internal)/i) {
|
||||
$valueok = "1";
|
||||
$value = $1;
|
||||
#print $value;
|
||||
|
|
Loading…
Reference in New Issue