[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: RAIDFrame advice?



"P T Withington" writes:
> Thanks for the clarification.  I plan to change my /etc/rc to say
> 
> # Configure raid devices.
> for dev in 0 1 2 3; do
>         if [ -f /etc/raid$dev.conf ]; then
>                  if [ -e /fastboot ]; then
>                          raidctl -c /etc/raid$dev.conf raid$dev
>                  else
>                          raidctl -i raid$dev
>                          raidctl -c /etc/raid$dev.conf raid$dev

You'll want to switch the above two lines to:
                           raidctl -c /etc/raid$dev.conf raid$dev
                           raidctl -i raid$dev

(the RAID set needs to be configured before you can re-initialize the parity)

>                  fi
>         fi
> done

Otherwise the above will probably be just fine.

> until the "latest" version of raidctl with the -P option is available.  (When
>  might that be?)

The "latest" has been available in NetBSD-current since August 10 or so. 
I have no idea when that version will be brought into OpenBSD. 

Later...

Greg Oster