1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Fix spelling mistakes in comments and descriptions

Thanks, codespell!
This commit is contained in:
Lars Kruse 2020-03-26 02:12:57 +01:00
parent 561da1a3f1
commit 8713eb3722
162 changed files with 248 additions and 248 deletions

View file

@ -86,6 +86,6 @@ my $session = Munin::Plugin::SNMP->session(-translate =>
my $temp = $session->get_single (".1.3.6.1.4.1.6574.1.2.0") || 'ERROR';
print "Retrived uptime is '$temp'\n" if $Munin::Plugin::SNMP::DEBUG;
print "Retrieved uptime is '$temp'\n" if $Munin::Plugin::SNMP::DEBUG;
print "temp.value ", $temp, "\n";

View file

@ -95,8 +95,8 @@ $charge = unpack "f", reverse pack "H*", $charge;
my $load = $session->get_single (".1.3.6.1.4.1.6574.4.2.12.1.0") || 'ERROR';
$load = unpack "f", reverse pack "H*", $load;
print "Retrived charge '$charge'\n" if $Munin::Plugin::SNMP::DEBUG;
print "Retrived load '$load'\n" if $Munin::Plugin::SNMP::DEBUG;
print "Retrieved charge '$charge'\n" if $Munin::Plugin::SNMP::DEBUG;
print "Retrieved load '$load'\n" if $Munin::Plugin::SNMP::DEBUG;
print "charge.value ", $charge, "\n";
print "load.value ", $load, "\n";