diff options
author | Francois Pons <fpons@mandriva.com> | 2002-09-12 15:17:06 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-09-12 15:17:06 +0000 |
commit | acea3f2fc25c762182d430e753077c5f49e6e50d (patch) | |
tree | b8c4838c5b69cbb11aa03ab57dc2f8f0f7788ee0 | |
parent | d3049ca80bf1f48134e5bddbb1349276fdcfc3c4 (diff) | |
download | urpmi-acea3f2fc25c762182d430e753077c5f49e6e50d.tar urpmi-acea3f2fc25c762182d430e753077c5f49e6e50d.tar.gz urpmi-acea3f2fc25c762182d430e753077c5f49e6e50d.tar.bz2 urpmi-acea3f2fc25c762182d430e753077c5f49e6e50d.tar.xz urpmi-acea3f2fc25c762182d430e753077c5f49e6e50d.zip |
fixed gurpmi in same 16mdk.
-rwxr-xr-x | urpmi | 8 | ||||
-rw-r--r-- | urpmi.spec | 1 |
2 files changed, 6 insertions, 3 deletions
@@ -62,6 +62,8 @@ my @src_names; $ENV{PATH} = "/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin"; delete @ENV{qw(ENV BASH_ENV IFS CDPATH)}; ($<, $uid) = ($>, $<); +$ENV{HOME} ||= "/root"; +$ENV{USER} ||= "root"; sub usage { print STDERR _("urpmi version %s @@ -420,7 +422,7 @@ if ($env) { if (@root_only) { print STDERR _("You need to be root to install the following dependencies:\n%s\n", join ' ', @root_only); exit 1; -} elsif (!$auto && $ask_user) { +} elsif (!$auto && ($ask_user || $X) && @to_install) { my $msg = _("To satisfy dependencies, the following packages are going to be installed (%d MB)", toMb($sum)); my $msg2 = _("Is this OK?"); my $p = join "\n", @to_install; @@ -502,13 +504,13 @@ if (%sources_install || %sources) { } if ($parallel) { - message(_("distributing %s\n", join(' ', values %sources_install, values %sources))); + message(_("distributing %s\n", join(' ', values %sources_install, values %sources)), 'noX'); #- no remove are handle here, automatically done by each distant node. $urpm->{log}("starting distributed install"); $urpm->parallel_install([ keys %{$state->{ask_remove} || {}} ], \%sources_install, \%sources, test => $test); } else { - message(_("installing %s\n", join(' ', values %sources_install, values %sources))); + message(_("installing %s\n", join(' ', values %sources_install, values %sources)), 'noX'); log_it(scalar localtime, " ", join(' ', values %sources_install, values %sources), "\n"); $urpm->{log}("starting installing packages"); if ($uid > 0) { @@ -205,6 +205,7 @@ fi * Thu Sep 12 2002 François Pons <fpons@mandrakesoft.com> 4.0-17mdk - fixed possible no clean of distributed module. - added apache2-conf to skip.list by default. +- fixed gurpmi usability. * Wed Sep 11 2002 François Pons <fpons@mandrakesoft.com> 4.0-16mdk - improved ka-run distributed module to copy all files with one |