diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 44093b17a..5a282cee0 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,7 @@ - diskdrake: o fix the crypto mountpoint checks for the create case o fix resize of active encrypted volumes + o fix race when creating encrypted partition out of install Version 13.22 - 29 April 2010 diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index 535de67ec..5d25312d2 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -568,6 +568,8 @@ First remove a primary partition and create an extended partition.")); $p->{toFormatCheck} = $in->ask_yesorno(N("Confirmation"), N("Check bad blocks?")); } $p->{isFormatted} = 0; #- force format; + # Wait for the newly created device to appear before formatting it + run_program::run('udevadm', 'settle') unless $::isInstall; my ($_w, $wait_message) = $in->wait_message_with_progress_bar; fs::format::part($all_hds, $p, $wait_message) unless isRawLVM($p); } |