diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-23 15:53:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-23 15:53:25 +0000 |
commit | 73de2527c3f22cb558f9933ec67e754d727a8825 (patch) | |
tree | 0bb0dda6b130128d8a17618893bf5a0e9c156692 /perl-install/raid.pm | |
parent | 8eda95cfd17ba78c28e2e818b36a5ac8c26b1c1c (diff) | |
download | drakx-73de2527c3f22cb558f9933ec67e754d727a8825.tar drakx-73de2527c3f22cb558f9933ec67e754d727a8825.tar.gz drakx-73de2527c3f22cb558f9933ec67e754d727a8825.tar.bz2 drakx-73de2527c3f22cb558f9933ec67e754d727a8825.tar.xz drakx-73de2527c3f22cb558f9933ec67e754d727a8825.zip |
put the new option auto=dev instead of auto=yes (see mdadm-1.8.0-2mdk)
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 4b4cb8109..08a792065 100644 --- a/perl-install/raid.pm +++ b/perl-install/raid.pm @@ -227,7 +227,7 @@ sub prepare_prefixed { output("$::prefix/etc/mdadm.conf", join(' ', 'DEVICE', @devices) . "\n", - map { "ARRAY " . devices::make($_->{device}) . " UUID=$_->{UUID} auto=yes\n" } @$raids); + map { "ARRAY " . devices::make($_->{device}) . " UUID=$_->{UUID} auto=dev\n" } @$raids); } sub get_md_info { |