mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-23 01:12:57 +02:00
mdadm: update to 3.2.1.
changed initskript to scan also for raid devices if no config is present.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
########################################################################
|
||||
# Begin $rc_base/init.d/mdadmraid
|
||||
# Begin $rc_base/init.d/mdadm
|
||||
#
|
||||
# Description : This script controls software Raid
|
||||
#
|
||||
@@ -17,28 +17,15 @@
|
||||
|
||||
case "${1}" in
|
||||
start)
|
||||
|
||||
if [ -f /etc/mdadm.conf ]
|
||||
then
|
||||
boot_mesg "Starting Raid devices..."
|
||||
|
||||
modprobe md
|
||||
modprobe raid0
|
||||
modprobe raid1
|
||||
modprobe raid5
|
||||
|
||||
sleep 1
|
||||
|
||||
mdadm --assemble --scan
|
||||
else
|
||||
boot_mesg "Skipping raid devices, no config found..."
|
||||
exit 1
|
||||
fi
|
||||
boot_mesg "Scan/assemble mdadm raid devices..."
|
||||
mdadm --assemble --scan
|
||||
echo_ok
|
||||
;;
|
||||
|
||||
stop)
|
||||
boot_mesg "Stopping Raid devices..."
|
||||
mdadm --stop --scan
|
||||
echo_ok
|
||||
;;
|
||||
|
||||
restart)
|
||||
@@ -57,4 +44,4 @@ case "${1}" in
|
||||
;;
|
||||
esac
|
||||
|
||||
# End $rc_base/init.d/mdadmraid
|
||||
# End $rc_base/init.d/mdadm
|
||||
|
||||
Reference in New Issue
Block a user