Advertisement
Guest User

Untitled

a guest
Jan 30th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.57 KB | None | 0 0
  1. I didn't modified these files, all are original.
  2.  
  3.  
  4. **Server.pm lines 598-602**
  5.  
  6.       # if the addr or host isn't blocked yet, allow it if it is allowed
  7.         foreach (@{ $prop->{'allow'} }) {
  8.             return 1 if $prop->{'peerhost'} =~ /^$_$/ && defined $prop->{'reverse_lookups'};
  9.             return 1 if $peeraddr =~ /^$_$/;
  10.         }
  11.  
  12. **munin-graph lines 73-77**
  13.  
  14.     my $nb_request_max = 0;
  15.     my $graph_fh = new IO::File($config->{libdir} . "/graphs");
  16.     while (my $path = <$graph_fh>) {
  17.         my $pinpoint = undef;
  18.         print "Request path is $path";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement