diff options
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index dcf78712..71b743df 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -465,13 +465,6 @@ if [ -x /sbin/lvm.static ]; then fi fi fi -# LVM initialization -if [ -f /etc/lvmtab ]; then - [ -e /proc/lvm ] || modprobe lvm-mod > /dev/null 2>&1 - if [ -e /proc/lvm -a -x /sbin/vgchange ]; then - action $"Setting up Logical Volume Management:" /sbin/vgscan && /sbin/vgchange -a y - fi -fi # Clean up SELinux labels if [ -n "$SELINUX" ]; then @@ -604,10 +597,6 @@ if [ -f /etc/raidtab ]; then action $"Setting up Logical Volume Management:" /sbin/lvm.static vgscan --mknodes --ignorelockingfailure && /sbin/lvm.static vgchange -a y --ignorelockingfailure fi fi - # LVM initialization, take 2 (it could be on top of RAID) - if [ -e /proc/lvm -a -x /sbin/vgchange -a -f /etc/lvmtab ]; then - action $"Setting up Logical Volume Management:" /sbin/vgscan && /sbin/vgchange -a y - fi fi fi |