Bugfix: Temperature didnt get any data because the regex was not complete.

This commit is contained in:
Florian Asche 2014-03-23 00:42:00 +01:00
parent 4769bd01cd
commit bcaa75ae51
1 changed files with 1 additions and 1 deletions

View File

@ -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;