summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2010-04-29 13:07:33 +0000
committerPascal Terjan <pterjan@mandriva.org>2010-04-29 13:07:33 +0000
commitfe7f2ec10a2c352db4c457df549326cee511b06b (patch)
tree3028f5cd4892d9e5e8f82064bfdb526cc2fb1989 /perl-install
parent742acd1c19ff19164eb79cc84e3c6bdbd52ba911 (diff)
downloaddrakx-backup-do-not-use-fe7f2ec10a2c352db4c457df549326cee511b06b.tar
drakx-backup-do-not-use-fe7f2ec10a2c352db4c457df549326cee511b06b.tar.gz
drakx-backup-do-not-use-fe7f2ec10a2c352db4c457df549326cee511b06b.tar.bz2
drakx-backup-do-not-use-fe7f2ec10a2c352db4c457df549326cee511b06b.tar.xz
drakx-backup-do-not-use-fe7f2ec10a2c352db4c457df549326cee511b06b.zip
set mountpoint on included partition, not encrypted one
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/diskdrake/interactive.pm2
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index d663f5f65..4203251e8 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- diskdrake:
+ o correctly set mountpoint on included partition, not encrypted one
+
Version 13.21 - 27 April 2010
- finish-install:
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 06205c24f..34709b826 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -559,6 +559,8 @@ First remove a primary partition and create an extended partition."));
my $p2 = fs::type::type_name2subpart($requested_type);
$p->{fs_type} = $p2->{fs_type};
$p->{type_name} = $requested_type;
+ $p->{mntpoint} = $part->{mntpoint};
+ $part->{mntpoint} = '';
if ($::isStandalone) {
fs::format::check_package_is_installed_format($in->do_pkgs, $p->{fs_type}) or log::l("Missing package");
}