1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/sh
cat > sensors-check << 'EOT'
<?php
function read_sensors($attribute)
{
$value = "";
$sensors = shell_exec("sensors 2>&1");
$sensors_lines = explode("\n", $sensors);
for($i = 0; $i < count($sensors_lines) && $value == ""; $i++)
{
$line = explode(": ", $sensors_lines[$i]);
$this_attribute = trim($line[0]);
if($this_attribute == $attribute)
{
$this_remainder = trim(str_replace(array('+', '°'), ' ', $line[1]));
$value = substr($this_remainder, 0, strpos($this_remainder, ' '));
}
}
return $value;
}
$sensors = array();
$sensor_results = array();
array_push($sensors, read_sensors("VCore"));
array_push($sensors, read_sensors("CPU Fan"));
array_push($sensors, read_sensors("CPU Temp"));
array_push($sensors, read_sensors("Sys Temp"));
foreach($sensors as $single_sensor)
{
if(is_numeric($sensors) && $sensors > 1)
array_push($sensor_results, "PASS");
else
array_push($sensor_results, "FAIL");
}
echo implode(",", $sensor_results) . "\n";
?>
EOT
cat > compliance-sensors << 'EOT'
#!/bin/sh
php sensors-check
EOT
chmod +x compliance-sensors
|