From 4b06a8a57d52b7d5447a1b487b8d33e36b4121b7 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Tue, 6 Oct 2009 20:47:17 +0000 Subject: do not set mountpoints for rescue partitions (#53504) --- perl-install/NEWS | 1 + perl-install/fs/mount_point.pm | 2 +- perl-install/install/NEWS | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 2cde3fa50..50cbd90b2 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,5 @@ - add back ram devices support (used by draklive) +- do not set mountpoints for rescue partitions (#53504) Version 12.58 - 5 October 2009 diff --git a/perl-install/fs/mount_point.pm b/perl-install/fs/mount_point.pm index 4d4880f5d..13c913245 100644 --- a/perl-install/fs/mount_point.pm +++ b/perl-install/fs/mount_point.pm @@ -47,7 +47,7 @@ sub suggest_mount_points { sub suggest_mount_points_always { my ($fstab) = @_; - my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} && $_->{pt_type} != 0x12 } @$fstab; + my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} && $_->{pt_type} != 0x12 && !isRecovery($_)} @$fstab; log::l("win parts: ", join ",", map { $_->{device} } @win) if @win; if (@win == 1) { #- Suggest /boot/efi on ia64. diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index eef6f3089..936496f5f 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- do not set mountpoints for rescue partitions (#53504) + Version 12.58 - 05 October 2009 - better describe what usernames we allow (#44783) -- cgit v1.2.1