summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-02-26 18:23:10 +0000
committerThierry Vignaud <tv@mageia.org>2013-02-26 18:23:10 +0000
commitf25b4002b3b01eb0d65e4d3c879481e84ac9332c (patch)
tree029cc76cdfffe38e5a2e7bb10f3e39d3e77d7377 /perl-install/install/steps_interactive.pm
parenta1848d9968442b9fa467b56dbb6cc31053d7a6de (diff)
downloaddrakx-f25b4002b3b01eb0d65e4d3c879481e84ac9332c.tar
drakx-f25b4002b3b01eb0d65e4d3c879481e84ac9332c.tar.gz
drakx-f25b4002b3b01eb0d65e4d3c879481e84ac9332c.tar.bz2
drakx-f25b4002b3b01eb0d65e4d3c879481e84ac9332c.tar.xz
drakx-f25b4002b3b01eb0d65e4d3c879481e84ac9332c.zip
do not attempt to use gurpmi.addmedia or gurpmi if in text mode
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r--perl-install/install/steps_interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 1c549ca4c..1bfea5cd0 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -781,7 +781,7 @@ Do you want to install the updates?")),
install::pkgs::clean_rpmdb_shared_regions();
if (any::urpmi_add_all_media($o, $o->{previous_release})) {
- my $binary = find { whereis_binary($_, $::prefix) } 'gurpmi2', 'urpmi' or return;
+ my $binary = find { whereis_binary($_, $::prefix) } if_(check_for_xserver(), 'gurpmi2'), 'urpmi' or return;
my $log_file = '/root/drakx/updates.log';
run_program::rooted($::prefix, $binary, '>>', $log_file, '2>>', $log_file, '--auto-select');
}