1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

Fix assignment of default LVM variable

Fix a typo which does not work in case LVM_BINARY is empty string.
Using proper :-  syntax.
This commit is contained in:
Zdenek Kabelac 2010-10-08 14:49:25 +00:00
parent 685940c01c
commit 0d9ed7ade3
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.75 - Version 2.02.75 -
===================================== =====================================
Fix assignment of default value to LVM variable is fsadm.
Fix support for --yes flag for fsadm. Fix support for --yes flag for fsadm.
Do not execute lvresize with --dry-run option for fsadm. Do not execute lvresize with --dry-run option for fsadm.
Fix fsadm return error code from user's break action. Fix fsadm return error code from user's break action.

View File

@ -49,7 +49,7 @@ FSCK=fsck
XFS_CHECK=xfs_check XFS_CHECK=xfs_check
# user may override lvm location by setting LVM_BINARY # user may override lvm location by setting LVM_BINARY
LVM=${LVM_BINARY-lvm} LVM=${LVM_BINARY:-lvm}
YES=${_FSADM_YES} YES=${_FSADM_YES}
DRY=0 DRY=0