#!/usr/local/bin/perl # do_install.cgi # Install some package on all hosts, in parallel. If the package was # downloaded from a URL, have the hosts do the same - otherwise, transfer # it to each. require './cluster-software-lib.pl'; &ReadParse(); @packages = &foreign_call("software", "file_packages", $in{'file'}); foreach $p (@packages) { local ($n, $d) = split(/\s+/, $p, 2); push(@names, $n); push(@descs, $d); } -r $in{'file'} || &error($text{'do_edeleted'}); &ui_print_header(undef, $text{'do_title'}, ""); print "",&text('do_header', join(" ", @names)),"

\n"; @hosts = &list_software_hosts(); @servers = &list_servers(); foreach $h (@hosts) { # Check if already installed local ($s) = grep { $_->{'id'} == $h->{'id'} } @servers; local $d = $s->{'desc'} ? $s->{'desc'} : $s->{'host'}; local ($a) = grep { &indexof($_->{'name'}, @names) >= 0 } @{$h->{'packages'}}; #if ($a) { # print &text('do_already', $d),"
\n"; # next; # } &remote_foreign_require($s->{'host'}, "software", "software-lib.pl"); local $rfile; local $need_unlink = 1; if (!$s->{'id'}) { # This host, so we already have the file $rfile = $in{'file'}; $need_unlink = 0; } elsif ($in{'source'} == 2 && $in{'down'}) { # Ask the remote server to download the file $rfile = &remote_eval($s->{'host'}, "software", '&tempname()'); if ($in{'ftpfile'}) { &remote_foreign_call($s->{'host'}, "software", "ftp_download", $in{'host'}, $in{'ftpfile'}, $rfile); } else { &remote_foreign_call($s->{'host'}, "software", "http_download", $in{'host'}, $in{'port'}, $in{'page'}, $rfile); } } else { # Need to copy the file across :( $rfile = &remote_write($s->{'host'}, $in{'file'}); } # Do the install .. for($i=0; $i<@names; $i++) { local $error = &remote_foreign_call($s->{'host'}, "software", "install_package", $rfile, $names[$i], \%in); if ($error) { print &text('do_failed', $d, $error),"
\n"; } else { # Success .. get the package details and add to list print &text('do_success', $d),"
\n"; if (!$pinfo[$i]) { $pinfo[$i] = [ &remote_foreign_call($s->{'host'}, "software", "package_info", $names[$i]) ]; } if (&indexof($names[$i], @{$h->{'packages'}}) < 0) { push(@{$h->{'packages'}}, { 'name' => $names[$i], 'desc' => $descs[$i], 'class' => $pinfo[$i]->[1] }); &save_software_host($h); } } } &remote_eval($s->{'host'}, "software", "unlink('$rfile')") if ($need_unlink); } unlink($in{'file'}) if ($in{'need_unlink'}); print "

$text{'do_done'}

\n"; for($i=0; $i<@names; $i++) { next if (!$pinfo[$i]); print "\n"; print "\n"; print "
$text{'do_details'}
\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "
$text{'do_desc'}
$pinfo[$i]->[2]
$text{'do_pack'} $pinfo[$i]->[0]$text{'do_class'} ", $pinfo[$i]->[1] ? $pinfo[$i]->[1] : $text{'do_none'},"
$text{'do_ver'} $pinfo[$i]->[4]$text{'do_vend'} $pinfo[$i]->[5]
$text{'do_arch'} $pinfo[$i]->[3]$text{'do_inst'} $pinfo[$i]->[6]

\n"; } &remote_finished(); &ui_print_footer("", $text{'index_return'});