summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-03-23 17:19:01 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-03-23 17:19:01 +0000
commita2658d55bf1a3c887ae624fdb6a35ec81ee94ccd (patch)
tree41d664e657726353c9afefec7172832bb76df987 /perl-install/fsedit.pm
parent1ccb1205a65a05cc7501544019bcca752b6d5b64 (diff)
downloaddrakx-backup-do-not-use-a2658d55bf1a3c887ae624fdb6a35ec81ee94ccd.tar
drakx-backup-do-not-use-a2658d55bf1a3c887ae624fdb6a35ec81ee94ccd.tar.gz
drakx-backup-do-not-use-a2658d55bf1a3c887ae624fdb6a35ec81ee94ccd.tar.bz2
drakx-backup-do-not-use-a2658d55bf1a3c887ae624fdb6a35ec81ee94ccd.tar.xz
drakx-backup-do-not-use-a2658d55bf1a3c887ae624fdb6a35ec81ee94ccd.zip
(change_type): When changing a partition type from ext2fs to Linux RAID
(or LVM), the mount point should be removed.
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 5cde8036c..0cad90d51 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -408,6 +408,7 @@ sub change_type($$$) {
$type != $part->{type} or return;
$hd->{isDirty} = 1;
$part->{mntpoint} = '' if isSwap($part) && $part->{mntpoint} eq "swap";
+ $part->{mntpoint} = '' if isLVM({ type => $type }) || isRAID({ type => $type });
$part->{type} = $type;
$part->{notFormatted} = 1;
$part->{isFormatted} = 0;