/[pxelator]/lib/PXElator/httpd.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/httpd.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 70 by dpavlin, Thu Jul 30 22:44:55 2009 UTC revision 77 by dpavlin, Fri Jul 31 14:42:45 2009 UTC
# Line 97  sub start_stop { Line 97  sub start_stop {
97          warn "start_stop $daemon $pid pids: ",dump( $pids );          warn "start_stop $daemon $pid pids: ",dump( $pids );
98    
99          if ( $pid =~ m{^\d+$} ) {          if ( $pid =~ m{^\d+$} ) {
100                  warn "kill 9 $pid";                  my $pstree = `pstree -p $pid`;
101                  kill 9, $pid;                  my @pids = $pstree =~ m{\((\d+)\)}g;
102                    warn "pstree $pstree pids ",dump( @pids );
103                    kill 1, $_ foreach reverse @pids;
104                  $pids->{$daemon} = 'stopped';                  $pids->{$daemon} = 'stopped';
105                  return qq|$daemon pid $pid stopped|;                  return qq|$daemon pid $pid stopped|;
106          } else {          } else {
# Line 143  sub get_request { Line 145  sub get_request {
145                          'debug',        qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,                          'debug',        qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,
146                  );                  );
147    
148                    my $debug_proc;
149    
150                  warn 'pids: ', dump( $pids );                  warn 'pids: ', dump( $pids );
151                  foreach my $name ( keys %$pids ) {                  foreach my $name ( keys %$pids ) {
152                          my $pid = $pids->{$name} || next;                          my $pid = $pids->{$name} || next;
                         my $proc = "/proc/$pid/status";  
153    
154                          my $html = qq|<a href=/$name>$pid</a>|;                          my $html = qq|<a href=/$name>$pid</a>|;
155                          $html   .= qq|<pre style="font-size: 10%">|  
156                                          .  ( $debug && -e $proc ? read_file($proc) : '' )                          if ( $debug ) {
157                                          .  qq|</pre>| if $debug;                                  $html .= qq| <a name=$pid href=#proc-$pid>?</a>|;
158    
159                                    my $proc = "/proc/$pid/status";
160                                    $debug_proc
161                                            .= qq|<a name=proc-$pid href=#$pid>$proc</a><pre style="font-size: 10%">|
162                                            .  read_file($proc)
163                                            .  qq|</pre>|
164                                            if -e $proc;
165                            }
166    
167                          push @rows, ( $name => $html );                          push @rows, ( $name => $html );
168                  }                  }
# Line 166  sub get_request { Line 177  sub get_request {
177                          }                          }
178                  }                  }
179    
180                  print $client $ok, html::table( 2, @rows );                  print $client $ok
181                            , html::table( 2, @rows )
182                            , html::tabs( log::mac_changes )
183                            , $debug_proc
184                            ;
185    
186          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
187                  eval 'our $' . $1 . ' = ' . $2;                  eval 'our $' . $1 . ' = ' . $2;

Legend:
Removed from v.70  
changed lines
  Added in v.77

  ViewVC Help
Powered by ViewVC 1.1.26