summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2015-04-14 13:35:11 +0200
committerPeter Rajnoha <prajnoha@redhat.com>2015-04-14 13:35:11 +0200
commit7a4e27eee51e89a550bc55f78daea6d943293202 (patch)
tree9a91854932a4e1231948ab6223842269d22b3005 /scripts
parentd1a770107d9525c24fc17522be450e28e1463e45 (diff)
downloadlvm2-7a4e27eee51e89a550bc55f78daea6d943293202.tar.gz
blkdeactivate: check for lvm binary and skip LVM processing if not present
This removes dependency on lvm binary - if it's not present, all LVM processing is skipped (shouldn't normally happen because if lvm binary is missing then there's obviously nothing that would activate it, but let's make sure). Without this tight dependency on lvm, the blkdeactivate script can be packaged with libdevmapper/dmsetup (in contrast to lvm as it was before) and as such the script can still be used to handle other DM devices.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/blkdeactivate.sh.in24
1 files changed, 21 insertions, 3 deletions
diff --git a/scripts/blkdeactivate.sh.in b/scripts/blkdeactivate.sh.in
index f45415434..993f15130 100644
--- a/scripts/blkdeactivate.sh.in
+++ b/scripts/blkdeactivate.sh.in
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2015 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
#
@@ -18,8 +18,10 @@
#
# Requires:
# bash >= 4.0 (associative array support)
-# lsblk >= 2.22 (lsblk -s support)
-# umount
+# util-linux {
+# lsblk >= 2.22 (lsblk -s support)
+# umount
+# }
# dmsetup >= 1.02.68 (--retry option support)
# lvm >= 2.2.89 (activation/retry_deactivation config support)
#
@@ -212,6 +214,11 @@ deactivate_lvm () {
test -z ${SKIP_VG_LIST["$DM_VG_NAME"]} || return 1
if test $LVM_DO_WHOLE_VG -eq 0; then
+ # Skip LVM device deactivation if LVM tools missing.
+ test $LVM_AVAILABLE -eq 0 && {
+ add_device_to_skip_list
+ return 1
+ }
# Deactivating only the LV specified
deactivate_holders "$DEV_DIR/$DM_VG_NAME/$DM_LV_NAME" || {
add_device_to_skip_list
@@ -227,6 +234,11 @@ deactivate_lvm () {
fi
else
+ # Skip LVM VG deactivation if LVM tools missing.
+ test $LVM_AVAILABLE -eq 0 && {
+ add_vg_to_skip_list
+ return 1
+ }
# Deactivating the whole VG the LV is part of
lv_list=$(eval $LVM vgs --config "$LVM_CONFIG" --noheadings --rows -o lv_name $DM_VG_NAME $ERR)
for lv in $lv_list; do
@@ -383,6 +395,12 @@ set_env() {
else
OUT="1>$DEV_DIR/null"
fi
+
+ if test -f $LVM; then
+ LVM_AVAILABLE=1
+ else
+ LVM_AVAILABLE=0
+ fi
}
while test $# -ne 0; do