--- lib/PXElator/httpd.pm 2009/07/30 22:44:55 70 +++ lib/PXElator/httpd.pm 2009/07/31 18:16:14 88 @@ -97,8 +97,10 @@ warn "start_stop $daemon $pid pids: ",dump( $pids ); if ( $pid =~ m{^\d+$} ) { - warn "kill 9 $pid"; - kill 9, $pid; + my $pstree = `pstree -p $pid`; + my @pids = $pstree =~ m{\((\d+)\)}g; + warn "pstree $pstree pids ",dump( @pids ); + kill 1, $_ foreach reverse @pids; $pids->{$daemon} = 'stopped'; return qq|$daemon pid $pid stopped|; } else { @@ -109,7 +111,9 @@ return qq|$daemon pid $pid started|; } elsif ( defined $pid ) { # child - my $eval = $daemon . '::start(' . ( @_ ? dump(@_) : '' ) . ')'; + my $invoke = 'start'; + $invoke = $1 if $daemon =~ s{/(.+)}{}; + my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')'; warn "eval $eval"; eval $eval; warn "can't start $daemon: $@" if $@; @@ -143,20 +147,40 @@ 'debug', qq|$debug|, ); - warn 'pids: ', dump( $pids ); - foreach my $name ( keys %$pids ) { + my $debug_proc; + + warn 'pids: ', dump( $pids ) if $debug; + foreach my $name ( sort keys %$pids ) { my $pid = $pids->{$name} || next; - my $proc = "/proc/$pid/status"; my $html = qq|$pid|; - $html .= qq|
|
-					.  ( $debug && -e $proc ? read_file($proc) : '' )
-					.  qq|
| if $debug; + + my $proc = "/proc/$pid/status"; + + if ( -e $proc ) { + if ( $debug ) { + $html .= qq| ?|; + + $debug_proc + .= qq|$proc
|
+						.  read_file($proc)
+						.  qq|
| + ; + } + + if ( $name->can('start_fork') ) { + $html .= qq| $_| foreach $name->start_fork; + } + + if ( $name->can('actions') ) { + $html .= qq| $_| foreach $name->actions; + } + } push @rows, ( $name => $html ); } - warn 'static_pids: ', dump( $static_pids ); + warn 'static_pids: ', dump( $static_pids ) if $debug; foreach my $pid ( keys %$static_pids ) { my $path = $static_pids->{$pid}; if ( -d "/proc/$pid" ) { @@ -166,18 +190,25 @@ } } - print $client $ok, html::table( 2, @rows ); + print $client $ok + , html::table( 2, @rows ) + , html::tabs( log::mac_changes ) + , $debug_proc + ; } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) { eval 'our $' . $1 . ' = ' . $2; warn $@ if $@; print $client $redirect, qq|$1 = $2
Location: $url|; server::debug( $debug ) if $1 eq 'debug'; - } elsif ( $path =~ m{^/(screen|kvm)} ) { + } elsif ( $path =~ m{^/start_stop/((?:screen|kvm).*)} ) { print $client $redirect, start_stop($1); + } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) { + $1->$2(); + print $client $redirect; } elsif ( $path =~ m{^/kill/static/(\d+)} ) { print $client $redirect; - kill 9, $1 && warn "killed $1"; + kill 1, $1 || kill 9, $2 && warn "killed $1"; } elsif ( $path eq '/exit' ) { # DESTROY; exit 0;