Browse Source

rc.sysinit: added a 1s delay after starting mdadm volumes and load dm-mod before `vgchange`

0.2-maint
Alejandro Mery 16 years ago
parent
commit
5a53eda432
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      initramfs/etc_rc.d_rc.sysinit.sh

+ 2
- 0
initramfs/etc_rc.d_rc.sysinit.sh

@ -110,6 +110,7 @@ fi
if [ -s /etc/mdadm.conf ]; then
title "Starting RAID volumes"
check mdadm -As
sleep 1
status
fi
@ -121,6 +122,7 @@ fi
if [ -n "$(ls -1 /etc/lvm/archive/*.vg 2> /dev/null)" ]; then
title "Starting LVM volumes"
modprobe dm-mod
check vgchange -ay
status
fi

Loading…
Cancel
Save