--- munin-1.3.2-plugins/node/munin-node.in~ 2005-04-15 22:31:21.000000000 +0200 +++ munin-1.3.2-plugins/node/munin-node.in 2005-10-09 14:39:18.137528464 +0200 @@ -859,7 +859,7 @@ if (!defined $sconf->{$service}{'user'}) { warn "User \"$tmpid\" in configuration file \"$dir/$file\" nonexistant. Skipping plugin."; - return undef; + next; } } elsif (/^\s*group\s+(.+)\s*$/) @@ -881,7 +881,7 @@ if (!defined $g and !$optional) { warn "Group \"$group\" in configuration file \"$dir/$file\" nonexistant. Skipping plugin."; - return undef; + next; } elsif (!defined $g and $optional) { --- munin-1.3.2/node/munin-run.in~ 2005-04-15 22:31:21.000000000 +0200 +++ munin-1.3.2/node/munin-run.in 2005-10-09 21:12:20.575416064 +0200 @@ -457,7 +457,7 @@ if (!defined $sconf->{$service}{'user'}) { warn "User \"$tmpid\" in configuration file \"$dir/$file\" nonexistant. Skipping plugin."; - return undef; + next; } } elsif (/^\s*group\s+(.+)\s*$/) @@ -477,7 +477,7 @@ if (!defined $g and !$optional) { warn "Group \"$group\" in configuration file \"$dir/$file\" nonexistant. Skipping plugin."; - return undef; + next; } elsif (!defined $g and $optional) {