-
Notifications
You must be signed in to change notification settings - Fork 25
Home
Meliox edited this page Jun 11, 2024
·
10 revisions
Welcome to the PVE-mods wiki!
#Development note:
In /usr/share/perl5/PVE/API2/Nodes.pm Replace
...
$res->{sensorsOutput}
....
with
my $json_file_path = '/tmp/sensordata.json'; # Ensure this path is correct
open my $fh, '<', $json_file_path or die "Cannot open $json_file_path: $!";
my $json_text = do { local $/; <$fh> };
close $fh;
$res->{sensorsOutput} = $json_text;