summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-09-18 16:16:52 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-09-18 16:16:52 +0000
commit0ef39fb7b32143ef3d9c4f17a40e24b90977ebdf (patch)
treec8dc0cfb98eb5b66a7453a16251f4f22ac9cc4e3 /perl-install/install
parent785e220d9d8085ecc9ea2d315036c29ce08605e0 (diff)
downloaddrakx-0ef39fb7b32143ef3d9c4f17a40e24b90977ebdf.tar
drakx-0ef39fb7b32143ef3d9c4f17a40e24b90977ebdf.tar.gz
drakx-0ef39fb7b32143ef3d9c4f17a40e24b90977ebdf.tar.bz2
drakx-0ef39fb7b32143ef3d9c4f17a40e24b90977ebdf.tar.xz
drakx-0ef39fb7b32143ef3d9c4f17a40e24b90977ebdf.zip
don't consider lvm named md* as raid (#53767)
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 8cc6ba10a..098e4c6c2 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- don't consider lvm named md* as raid (#53767)
+
Version 12.52 - 15 September 2009
- RC1 logo
0])); } sub new($$) { my ($type, $o) = @_; interactive_newt->new; banner(''); Newt::PushHelpLine(_(" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen ")); (bless {}, ref $type || $type)->SUPER::new($o); } sub doPartitionDisks($$) { my ($o, $hds, $raid) = @_; Newt::Suspend(); foreach (@$hds) { print _("You can now partition your %s hard drive When you are done, don't forget to save using `w'", $_->{device}); print "\n\n"; my $pid = fork or exec "fdisk", devices::make($_->{device}); waitpid($pid, 0); } Newt::Resume(); install_any::getHds($o); $o->ask_mntpoint_s($o->{fstab}); } sub enteringStep { my ($o, $step) = @_; $o->SUPER::enteringStep($step); banner(translate($o->{steps}{$step}{text})); } sub exitInstall { &install_steps_interactive::exitInstall; interactive_newt::end; } 1;