diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-08-06 13:43:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-08-06 13:43:26 +0000 |
commit | 21fbfdfead833c685b255edb3c3460198ce89877 (patch) | |
tree | 53d5fe3042a57097040f468982deb062737fe26a /perl-install/install_any.pm | |
parent | f18434c76326cf6c58d24dc67ef4707ec72f400d (diff) | |
download | drakx-21fbfdfead833c685b255edb3c3460198ce89877.tar drakx-21fbfdfead833c685b255edb3c3460198ce89877.tar.gz drakx-21fbfdfead833c685b255edb3c3460198ce89877.tar.bz2 drakx-21fbfdfead833c685b255edb3c3460198ce89877.tar.xz drakx-21fbfdfead833c685b255edb3c3460198ce89877.zip |
no_comment
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 80b6f4f26..e972e8c5a 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -882,6 +882,7 @@ sub partitionWizard { push @solutions, [ _("Use existing partition"), sub { $o->ask_mntpoint_s($o->{fstab}) } ]; } elsif (@l = grep { isFat($_) } @$fstab) { } + require diskdrake; push @solutions, [ _("Take over the hard drive (beware!)"), sub { @@ -891,7 +892,8 @@ sub partitionWizard { partition_table_raw::zero_MBR($hd); fsedit::auto_allocate($hds, $o->{partitions}); 1; - } ]; + } ], + [ _("Use diskdrake"), sub { diskdrake::main($hds, $o->{raid}, interactive_gtk->new, $o->{partitions}); 1 } ], } 1; |