diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 22:03:29 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 22:03:29 +0000 |
commit | bc05f062a49c21078346c2223d0807afc9ce20bd (patch) | |
tree | 7ca7c36745e47ceb6f475c1a0daf8e9c56b2101a /perl-install/install2.pm | |
parent | 2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08 (diff) | |
download | drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.tar drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.gz drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.bz2 drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.xz drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.zip |
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index d64272c97..71def4178 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -21,6 +21,7 @@ use keyboard; use lilo; use mouse; use fs; +use raid; use timezone; use fsedit; use devices; @@ -325,7 +326,7 @@ sub formatPartitions { home mnt tmp var var/tmp var/lib var/lib/rpm); mkdir "$o->{prefix}/$_", 0700 foreach qw(root); - eval { commands::cp("-f", "/etc/raidtab", "$o->{prefix}/etc/raidtab") } if !is_empty_hash_ref($o->{raid}); + raid::prepare_prefixed($o->{raid}, $o->{prefix}); } #------------------------------------------------------------------------------ |