Changeset 41

Show
Ignore:
Timestamp:
01/29/04 20:25:52 (8 years ago)
Author:
jimmyo
Message:

Fixed bad debug output (forgotten linebreaks) in munin-node-configure (SF#882385).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    • Property cvs2svn:cvs-rev changed from 1.16 to 1.17
    r40 r41  
    2323  * Moved generic netstat to linux-dir, as it is too spesific. Added Solaris 
    2424    version of the plugin as well. (SF#882354) 
     25  * Fixed bad debug output (forgotten linebreaks) in munin-node-configure 
     26    (SF#882385). 
    2527 
    2628munin (1.0.0pre1) 
  • trunk/node/munin-node-configure.in

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r27 r41  
    44# 
    55# $Log$ 
     6# Revision 1.4  2004/01/29 19:25:52  jimmyo 
     7# Fixed bad debug output (forgotten linebreaks) in munin-node-configure (SF#882385). 
     8# 
    69# Revision 1.3  2004/01/29 17:36:19  jimmyo 
    710# Updated copyright information 
     
    438441                close (FILE); 
    439442 
    440                 next unless (grep (/^$ps->{$plug}->{'family'}$/, @families)); 
    441                 next if ($ps->{$plug}->{'family'} eq "auto" and defined $newer and  
    442                         !defined $ps->{$plug}->{'version'}); 
     443                unless (grep (/^$ps->{$plug}->{'family'}$/, @families)) { 
     444                        print "\n" if $debug; 
     445                        next; 
     446                } 
     447                if ($ps->{$plug}->{'family'} eq "auto" and defined $newer and 
     448                        !defined $ps->{$plug}->{'version'}) { 
     449                        print "\n" if $debug; 
     450                        next; 
     451                } 
    443452 
    444453                if ($ps->{$plug}->{'capability'}->{'autoconf'})