diff options
Diffstat (limited to 'rc.d/init.d/netfs')
-rwxr-xr-x | rc.d/init.d/netfs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index 48385930..aef89709 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -52,9 +52,9 @@ case "$1" in /sbin/dmsetup ls --target multipath --exec "/sbin/kpartx -a" fi fi - if [ -x /sbin/lvm.static ]; then - if /sbin/lvm.static vgscan > /dev/null 2>&1 ; then - action $"Setting up Logical Volume Management:" /sbin/lvm.static vgchange -a y + if [ -x /sbin/lvm ]; then + if /sbin/lvm vgscan > /dev/null 2>&1 ; then + action $"Setting up Logical Volume Management:" /sbin/lvm vgchange -a y fi fi STRING=$"Checking network-attached filesystems" |