--- lib/PXElator/httpd.pm 2009/08/05 13:25:55 149 +++ lib/PXElator/httpd.pm 2009/08/06 15:36:13 158 @@ -23,6 +23,7 @@
home server +client
}} @@ -47,6 +48,7 @@ use html; our $static_pids; use progress_bar; +use config; sub static { my ($client,$path) = @_; @@ -100,7 +102,6 @@ use boolean; -use screen; use kvm; $SIG{CHLD} = 'IGNORE'; @@ -128,10 +129,16 @@ # child my $invoke = 'start'; $invoke = $1 if $daemon =~ s{/(.+)}{}; - my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')'; - warn "eval $eval"; - eval $eval; - warn "can't start $daemon: $@" if $@; + if ( $daemon =~ m{dhcpd|tftpd|dnsd} ) { + my $exec = "perl -I$server::base_dir/lib -I$server::base_dir/lib/PXElator -M$daemon -e ${daemon}::${invoke}"; + warn "exec $exec"; + exec "xterm -T $daemon -n $daemon -e $exec"; + } else { + my $eval = $daemon . '::' . $invoke . '(' . ( @_ ? dump(@_) : '' ) . ')'; + warn "eval $eval"; + eval $eval; + warn "can't start $daemon: $@" if $@; + } exit; } else { die "fork error $!"; @@ -153,10 +160,6 @@ warn "static $found" if $debug; } elsif ( $path eq '/' ) { - my $screen = $pids->{screen} ? qq|stop $pids->{screen}| : 'start'; - my $kvm = $pids->{kvm} ? qq|stop $pids->{kvm}| : - $pids->{screen} ? qq|start| : qq|start screen first|; - my @rows = ( 'debug', qq|$debug|, ); @@ -222,12 +225,28 @@ , menu() , html::table( 2, map { ( $_, eval '$server::'.$_ ) } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir' ) ) ; + } elsif ( $path =~ m{^/client} ) { + my $ip = $client->peerhost; + my $hostname = server::shared( "hostname/$ip", $param->{hostname} ); + my $deploy = server::shared( "deploy/$ip", $param->{deploy} ); + print $client $ok + , menu() + , qq|
| + , html::table( 2, + 'ip' => $ip, + 'hostname' => qq||, + 'deploy' => html::select( 'deploy', $deploy, config::available ), + ) + , qq|
|
+			, config::for_ip( $ip )
+			, qq|
| + ; } 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{^/start_stop/((?:screen|kvm).*)} ) { # XXX we don't want to stop all classes + } elsif ( $path =~ m{^/start_stop/(\S+)} ) { print $client $redirect, start_stop($1); } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) { $1->$2(); @@ -270,7 +289,9 @@ print "url $url\n"; start_stop 'browser', $url; - start_stop 'screen'; + start_stop 'dhcpd'; + start_stop 'tftpd'; + start_stop 'dnsd'; start_stop 'kvm'; while (1) {