mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
269 lines
7.0 KiB
Perl
Executable File
269 lines
7.0 KiB
Perl
Executable File
# apt-lib.pl
|
|
# Functions for installing packages from debian APT
|
|
|
|
$apt_get_command = $config{'apt_mode'} ? "aptitude" : "apt-get";
|
|
$apt_search_command = $config{'apt_mode'} ? "aptitude" : "apt-cache";
|
|
|
|
sub list_update_system_commands
|
|
{
|
|
return ($apt_get_command, $apt_search_command);
|
|
}
|
|
|
|
# update_system_install([package], [&in], [no-force])
|
|
# Install some package with apt
|
|
sub update_system_install
|
|
{
|
|
local $update = $_[0] || $in{'update'};
|
|
local $force = !$_[2];
|
|
local (@rv, @newpacks);
|
|
|
|
# Build the command to run
|
|
$ENV{'DEBIAN_FRONTEND'} = 'noninteractive';
|
|
local $cmd = $apt_get_command eq "apt-get" ?
|
|
"$apt_get_command -y ".($force ? " --force-yes -f" : "")." install $update" :
|
|
"$apt_get_command -y".($force ? " -f" : "")." install $update";
|
|
$update = join(" ", map { quotemeta($_) } split(/\s+/, $update));
|
|
print "<b>",&text('apt_install', "<tt>$cmd</tt>"),"</b><p>\n";
|
|
print "<pre>";
|
|
&additional_log('exec', undef, $cmd);
|
|
|
|
# Run dpkg --configure -a to clear any un-configured packages
|
|
$SIG{'TERM'} = 'ignore'; # This may cause a Webmin re-config!
|
|
local $out = &backquote_logged("dpkg --configure -a 2>&1 </dev/null");
|
|
print &html_escape($out);
|
|
|
|
# Create an input file of 'yes'
|
|
local $yesfile = &transname();
|
|
&open_tempfile(YESFILE, ">$yesfile", 0, 1);
|
|
foreach (0..100) {
|
|
&print_tempfile(YESFILE, "Yes\n");
|
|
}
|
|
&close_tempfile(YESFILE);
|
|
|
|
# Run the command
|
|
&open_execute_command(CMD, "$cmd <$yesfile", 2);
|
|
while(<CMD>) {
|
|
if (/setting\s+up\s+(\S+)/i && !/as\s+MDA/i) {
|
|
push(@rv, $1);
|
|
}
|
|
elsif (/packages\s+will\s+be\s+upgraded/i ||
|
|
/new\s+packages\s+will\s+be\s+installed/i) {
|
|
print;
|
|
$line = $_ = <CMD>;
|
|
$line =~ s/^\s+//; $line =~ s/\s+$//;
|
|
push(@newpacks, split(/\s+/, $line));
|
|
}
|
|
print &html_escape("$_");
|
|
}
|
|
close(CMD);
|
|
if (!@rv && $config{'package_system'} ne 'debian' && !$?) {
|
|
# Other systems don't list the packages installed!
|
|
@rv = @newpacks;
|
|
}
|
|
print "</pre>\n";
|
|
if ($?) { print "<b>$text{'apt_failed'}</b><p>\n"; }
|
|
else { print "<b>$text{'apt_ok'}</b><p>\n"; }
|
|
return @rv;
|
|
}
|
|
|
|
# update_system_operations(packages)
|
|
# Given a list of packages, returns a list containing packages that will
|
|
# actually get installed, each of which is a hash ref with name and version.
|
|
sub update_system_operations
|
|
{
|
|
my ($packages) = @_;
|
|
$ENV{'DEBIAN_FRONTEND'} = 'noninteractive';
|
|
my $cmd = "apt-get -s install ".
|
|
join(" ", map { quotemeta($_) } split(/\s+/, $packages)).
|
|
" </dev/null 2>&1";
|
|
my $out = &backquote_command($cmd);
|
|
my @rv;
|
|
foreach my $l (split(/\r?\n/, $out)) {
|
|
if ($l =~ /Inst\s+(\S+)\s+\[(\S+)\]/) {
|
|
my $pkg = { 'name' => $1,
|
|
'version' => $2 };
|
|
if ($pkg->{'version'} =~ s/^(\S+)://) {
|
|
$pkg->{'epoch'} = $1;
|
|
}
|
|
push(@rv, $pkg);
|
|
}
|
|
}
|
|
return @rv;
|
|
}
|
|
|
|
# update_system_form()
|
|
# Shows a form for updating all packages on the system
|
|
sub update_system_form
|
|
{
|
|
print &ui_subheading($text{'apt_form'});
|
|
print &ui_form_start("apt_upgrade.cgi");
|
|
print &ui_table_start($text{'apt_header'}, undef, 2);
|
|
|
|
print &ui_table_row($text{'apt_update'},
|
|
&ui_yesno_radio("update", 1));
|
|
|
|
print &ui_table_row($text{'apt_mode'},
|
|
&ui_radio("mode", 0, [ [ 2, $text{'apt_mode2'} ],
|
|
[ 1, $text{'apt_mode1'} ],
|
|
[ 0, $text{'apt_mode0'} ] ]));
|
|
|
|
print &ui_table_row($text{'apt_sim'},
|
|
&ui_yesno_radio("sim", 0));
|
|
|
|
print &ui_table_end();
|
|
print &ui_form_end([ [ undef, $text{'apt_apply'} ] ]);
|
|
}
|
|
|
|
# update_system_resolve(name)
|
|
# Converts a standard package name like apache, sendmail or squid into
|
|
# the name used by APT.
|
|
sub update_system_resolve
|
|
{
|
|
local ($name) = @_;
|
|
return $name eq "dhcpd" ? "dhcp3-server" :
|
|
$name eq "bind" ? "bind9" :
|
|
$name eq "mysql" ? "mysql-client mysql-server mysql-admin" :
|
|
$name eq "apache" ? "apache2" :
|
|
$name eq "postgresql" ? "postgresql postgresql-client" :
|
|
$name eq "openssh" ? "ssh" :
|
|
$name eq "openldap" ? "slapd" :
|
|
$name eq "dovecot" ? "dovecot-common dovecot-imapd dovecot-pop3d" :
|
|
$name;
|
|
}
|
|
|
|
# update_system_available()
|
|
# Returns a list of package names and versions that are available from YUM
|
|
sub update_system_available
|
|
{
|
|
local (@rv, $pkg, %done);
|
|
|
|
# Use dump to get versions
|
|
&execute_command("$apt_get_command update");
|
|
&open_execute_command(DUMP, "LANG='' LC_ALL='' apt-cache dump", 1, 1);
|
|
while(<DUMP>) {
|
|
if (/^\s*Package:\s*(\S+)/) {
|
|
$pkg = { 'name' => $1 };
|
|
push(@rv, $pkg);
|
|
$done{$1} = $pkg;
|
|
}
|
|
elsif (/^\s*Version:\s*(\S+)/ && $pkg && !$pkg->{'version'}) {
|
|
$pkg->{'version'} = $1;
|
|
if ($pkg->{'version'} =~ /^(\d+):(.*)$/) {
|
|
$pkg->{'epoch'} = $1;
|
|
$pkg->{'version'} = $2;
|
|
}
|
|
}
|
|
elsif (/^\s*File:\s*(\S+)/ && $pkg) {
|
|
$pkg->{'file'} ||= $1;
|
|
}
|
|
}
|
|
close(DUMP);
|
|
|
|
# Use search to get descriptions
|
|
foreach my $s (&update_system_search('.*')) {
|
|
my $pkg = $done{$s->{'name'}};
|
|
if ($pkg) {
|
|
$pkg->{'desc'} = $s->{'desc'};
|
|
}
|
|
}
|
|
|
|
return @rv;
|
|
}
|
|
|
|
# update_system_search(text)
|
|
# Returns a list of packages matching some search
|
|
sub update_system_search
|
|
{
|
|
local (@rv, $pkg);
|
|
&open_execute_command(DUMP, "LANG='' LC_ALL='' $apt_search_command search ".
|
|
quotemeta($_[0]), 1, 1);
|
|
while(<DUMP>) {
|
|
if (/^(\S+)\s*-\s*(.*)/) {
|
|
push(@rv, { 'name' => $1, 'desc' => $2 });
|
|
}
|
|
elsif (/^(\S)\s+(\S+)\s+-\s*(.*)/) {
|
|
push(@rv, { 'name' => $2, 'desc' => $3 });
|
|
}
|
|
}
|
|
close(DUMP);
|
|
return @rv;
|
|
}
|
|
|
|
# update_system_updates()
|
|
# Returns a list of available package updates
|
|
sub update_system_updates
|
|
{
|
|
if (&has_command("apt-show-versions")) {
|
|
# This awesome command can give us all updates in one hit
|
|
local @rv;
|
|
&open_execute_command(PKGS,
|
|
"LANG='' LC_ALL='' apt-show-versions", 1, 1);
|
|
while(<PKGS>) {
|
|
if (/^(\S+)\/(\S+)\s+upgradeable\s+from\s+(\S+)\s+to\s+(\S+)/) {
|
|
local $pkg = { 'name' => $1,
|
|
'source' => $2,
|
|
'version' => $4 };
|
|
if ($pkg->{'version'} =~ s/^(\S+)://) {
|
|
$pkg->{'epoch'} = $1;
|
|
}
|
|
push(@rv, $pkg);
|
|
}
|
|
}
|
|
close(PKGS);
|
|
return @rv;
|
|
}
|
|
else {
|
|
# Need to manually compose by calling dpkg and apt-cache showpkg ..
|
|
local %packages;
|
|
local $n = &list_packages();
|
|
local %currentmap;
|
|
for(my $i=0; $i<$n; $i++) {
|
|
local $pkg = { 'name' => $packages{$i,'name'},
|
|
'oldversion' => $packages{$i,'version'},
|
|
'desc' => $packages{$i,'desc'},
|
|
'oldepoch' => $packages{$i,'epoch'} };
|
|
$currentmap{$pkg->{'name'}} ||= $pkg;
|
|
}
|
|
local @rv;
|
|
local @names = keys %currentmap;
|
|
while(scalar(@names)) {
|
|
local @somenames;
|
|
if (scalar(@names) > 100) {
|
|
# Do 100 at a time
|
|
@somenames = @names[0..99];
|
|
@names = @names[100..$#names];
|
|
}
|
|
else {
|
|
# Do the rest
|
|
@somenames = @names;
|
|
@names = ( );
|
|
}
|
|
&open_execute_command(PKGS,
|
|
"LANG='' LC_ALL='' apt-cache showpkg ".
|
|
join(" ", @somenames), 1, 1);
|
|
local $pkg = undef;
|
|
while(<PKGS>) {
|
|
s/\r|\n//g;
|
|
if (/^\s*Package:\s*(\S+)/) {
|
|
$pkg = $currentmap{$1};
|
|
}
|
|
elsif (/^Versions:\s*$/ && $pkg && !$pkg->{'version'}) {
|
|
# Newest version is on next line
|
|
local $ver = <PKGS>;
|
|
$ver =~ s/\s.*\r?\n//;
|
|
local $epoch;
|
|
if ($ver =~ s/^(\d+)://) {
|
|
$epoch = $1;
|
|
}
|
|
$pkg->{'version'} = $ver;
|
|
$pkg->{'epoch'} = $epoch;
|
|
push(@rv, $pkg);
|
|
}
|
|
}
|
|
close(PKGS);
|
|
}
|
|
return @rv;
|
|
}
|
|
}
|
|
|