diff options
author | Lukas Nykryn <lnykryn@redhat.com> | 2014-03-26 14:06:52 +0100 |
---|---|---|
committer | Lukas Nykryn <lnykryn@redhat.com> | 2014-03-26 14:07:22 +0100 |
commit | 840f611d328b1725a15b1f08bc7437b3de96084d (patch) | |
tree | 46ed7dd9a4c598d83b93828b09ddbe605db79373 | |
parent | 4b90cc9fa289716ca9681e313f50cf469fcc1113 (diff) | |
download | initscripts-840f611d328b1725a15b1f08bc7437b3de96084d.tar initscripts-840f611d328b1725a15b1f08bc7437b3de96084d.tar.gz initscripts-840f611d328b1725a15b1f08bc7437b3de96084d.tar.bz2 initscripts-840f611d328b1725a15b1f08bc7437b3de96084d.tar.xz initscripts-840f611d328b1725a15b1f08bc7437b3de96084d.zip |
rc.sysinit: use 'vgchange --ignoreskippedcluster'
-rwxr-xr-x | rc.d/init.d/netfs | 2 | ||||
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index 263accff..4bcbe022 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -55,7 +55,7 @@ case "$1" in fi if [ -x /sbin/lvm ]; then if /sbin/lvm vgscan > /dev/null 2>&1 ; then - action $"Setting up Logical Volume Management:" /sbin/lvm vgchange -a ay + action $"Setting up Logical Volume Management:" /sbin/lvm vgchange -a ay --ignoreskippedcluster fi fi diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 42740e46..9be5f895 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -204,7 +204,7 @@ fi if [ -x /sbin/lvm ]; then if [ ! -f /.nolvm ] && ! strstr "$cmdline" nolvm ; then - action $"Setting up Logical Volume Management:" /sbin/lvm vgchange -a ay --sysinit + action $"Setting up Logical Volume Management:" /sbin/lvm vgchange -a ay --sysinit --ignoreskippedcluster else echo $"Logical Volume Management disabled at boot." fi |