ports/sysutils/munin-common/files/patch-node_lib_Munin_Node_Server.pm
2020-03-30 19:28:27 +00:00

14 lines
493 B
Perl

Backporting: https://github.com/munin-monitoring/munin/commit/8ff5d5a9ec8b7ffd99dce61fee42defe7bda3b29
See also: http://munin-monitoring.org/ticket/1451
--- node/lib/Munin/Node/Server.pm.orig 2020-03-24 12:31:00 UTC
+++ node/lib/Munin/Node/Server.pm
@@ -341,7 +341,7 @@ sub _print_service {
sub _list_services {
my ($session, $node) = @_;
- $node ||= $config->{fqdn};
+ $node ||= lc($config->{fqdn});
if (exists $nodes{$node}) {
my @services = @{$nodes{$node}};