summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-01-31 14:25:28 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-01-31 14:25:28 +0000
commit032dd82bc486aafc4647edc3442f1e5f431525dd (patch)
treee02c96a92878e9130121b5c16f08db4f9cbd5e0e /perl-install/diskdrake
parentbb1ba670a8b075d2d5c12d2263d3b190e4f05b8d (diff)
downloaddrakx-032dd82bc486aafc4647edc3442f1e5f431525dd.tar
drakx-032dd82bc486aafc4647edc3442f1e5f431525dd.tar.gz
drakx-032dd82bc486aafc4647edc3442f1e5f431525dd.tar.bz2
drakx-032dd82bc486aafc4647edc3442f1e5f431525dd.tar.xz
drakx-032dd82bc486aafc4647edc3442f1e5f431525dd.zip
- do not write_partitions when resizing & loosing data (not needed)
- handle "cancel" on write_partitions
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/interactive.pm15
1 files changed, 8 insertions, 7 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 3f3465254..0dd1526d4 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -704,15 +704,16 @@ sub Resize {
my ($write_partitions) = @_;
if (isLVM($hd)) {
- lvm::lv_resize($part, $oldsize)
- } else {
- partition_table::adjust_local_extended($hd, $part);
- partition_table::adjust_main_extended($hd);
- write_partitions($in, $hd) if $write_partitions;
- }
+ lvm::lv_resize($part, $oldsize) ;
+ } else {
+ partition_table::adjust_local_extended($hd, $part);
+ partition_table::adjust_main_extended($hd);
+ write_partitions($in, $hd) or return if $write_partitions && %nice_resize;
+ }
+ 1;
};
- $adjust->(1) if $size > $oldsize;
+ $adjust->(1) or return if $size > $oldsize;
if ($nice_resize{fat}) {
local *log::l = sub { $w->set(join(' ', @_)) };