diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-06-11 22:17:14 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-06-11 22:17:14 +0000 |
commit | b8d75ed5914466dfc5c07916ac167f8f4728888c (patch) | |
tree | b1ae113abe5fcc13038f528a6bf0b9d5ed684da5 /perl-install/raid.pm | |
parent | df52dd03d51f1728f15db0d89df54532811c1870 (diff) | |
download | drakx-b8d75ed5914466dfc5c07916ac167f8f4728888c.tar drakx-b8d75ed5914466dfc5c07916ac167f8f4728888c.tar.gz drakx-b8d75ed5914466dfc5c07916ac167f8f4728888c.tar.bz2 drakx-b8d75ed5914466dfc5c07916ac167f8f4728888c.tar.xz drakx-b8d75ed5914466dfc5c07916ac167f8f4728888c.zip |
include patch to autodetect raid arrays (still needs a kernel that implements the ioctl..)
Diffstat (limited to 'perl-install/raid.pm')
-rw-r--r-- | perl-install/raid.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/raid.pm b/perl-install/raid.pm index 1f2275706..b74c53e25 100644 --- a/perl-install/raid.pm +++ b/perl-install/raid.pm @@ -122,8 +122,8 @@ sub make { isMDRAID($_) and make($raid, $_) foreach @{$part->{disks}}; my $dev = devices::make($part->{device}); eval { modules::load(module($part)) }; - run_program::run("raidstop", $dev); &write($raid, "/etc/raidtab"); + run_program::run("raidstop", $dev); run_program::run("mkraid", "--really-force", $dev) or die $::isStandalone ? _("mkraid failed (maybe raidtools are missing?)") : _("mkraid failed"); } |