From 6939336bb8f10b2d761fe428da773f5cad71af43 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 23 May 2012 18:28:29 +0000 Subject: default to the higher version when there're several mga roots (mga#6003) --- rescue/guessmounts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rescue/guessmounts') diff --git a/rescue/guessmounts b/rescue/guessmounts index 0f5da6e48..14d7cd804 100755 --- a/rescue/guessmounts +++ b/rescue/guessmounts @@ -78,6 +78,8 @@ my ($root, $fs, @fstab); # Try Mageia first: if (@roots) { + # Order by release number: + @roots = sort { $b->{release} cmp $a->{release} } @roots; # Then pick mga over mdv: @roots = map { @$_ } partition { $_->{release} =~ /Mageia/ } @roots; my $selected = first(@roots); -- cgit v1.2.1