diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-06 10:13:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-06 10:13:04 +0000 |
commit | d5e86a6fc9952b1eea07d5c14dc743fde7692d45 (patch) | |
tree | ae270820de5332ff8d24f3dc85c81a454f4c2f43 /perl-install/raid.pm | |
parent | 0d5a1b01a3a92b910347fbbba77ef0b1e18ac3c5 (diff) | |
download | drakx-d5e86a6fc9952b1eea07d5c14dc743fde7692d45.tar drakx-d5e86a6fc9952b1eea07d5c14dc743fde7692d45.tar.gz drakx-d5e86a6fc9952b1eea07d5c14dc743fde7692d45.tar.bz2 drakx-d5e86a6fc9952b1eea07d5c14dc743fde7692d45.tar.xz drakx-d5e86a6fc9952b1eea07d5c14dc743fde7692d45.zip |
- fs::format::part_raw() now takes $wait_message to allow displaying the progress of format
- create fs::format::wait_message() which creates a $wait_message valid to give to fs::format::part
- fs::format::mke2fs() format while parsing the output to display the progress
Diffstat (limited to 'perl-install/raid.pm')
-rw-r--r-- | perl-install/raid.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/raid.pm b/perl-install/raid.pm index 32a57f787..de74f55ef 100644 --- a/perl-install/raid.pm +++ b/perl-install/raid.pm @@ -134,7 +134,7 @@ sub format_part { $part->{isFormatted} and return; make($raids, $part); - fs::format::part_raw($part); + fs::format::part_raw($part, undef); set_isFormatted($_, 1) foreach @{$part->{disks}}; } |