wok view dmraid/stuff/dmraid-start @ rev 4027

dmraid/grub-dmraid: ensure raid is up
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 05 11:28:55 2009 +0200 (2009-09-05)
parents
children
line source
1 #!/bin/sh
3 module=$(dmraid -s | grep ^type | awk '{ print $3 }')
5 case "$module" in
6 mirror) module=dm-mirror;;
7 raid[456]*) module=raid456;;
8 esac
10 [ -n "$module" ] && modprobe $module
11 dmraid -ay