summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-11-09 22:03:29 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-11-09 22:03:29 +0000
commitbc05f062a49c21078346c2223d0807afc9ce20bd (patch)
tree7ca7c36745e47ceb6f475c1a0daf8e9c56b2101a /perl-install/install2.pm
parent2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08 (diff)
downloaddrakx-bc05f062a49c21078346c2223d0807afc9ce20bd.tar
drakx-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.gz
drakx-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.bz2
drakx-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.xz
drakx-bc05f062a49c21078346c2223d0807afc9ce20bd.zip
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm3
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});
}
#------------------------------------------------------------------------------