From 1bd5906918f44cd0fa4021c9cd34d0d6160203dd Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 11 Aug 2018 21:17:04 +0100 Subject: installer: remove current media before adding online media (mga#19742) thus preventing a failure when installing updates (due to udisks-daemon not running) if a package was available in the install media. Note that this will also cause the live system local repo to be removed when finish-install is run after installing the live system to disk. This is harmless - anything in the local repo should also be available in the online media - and indeed, leads to a cleaner system. (committed by Martin Whitaker ) --- perl-install/any.pm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'perl-install/any.pm') diff --git a/perl-install/any.pm b/perl-install/any.pm index 92af852bd..1512f48c1 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1024,6 +1024,9 @@ sub urpmi_add_all_media { log::l("no network connexion!"); return; } + # First remove all media: + run_program::rooted($::prefix, 'urpmi.removemedia', '-a'); + # Then add online media: my $wait; my @options = ('--distrib', '--mirrorlist', '$MIRRORLIST'); if ($binary eq 'urpmi.addmedia') { -- cgit v1.2.1