summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2015-09-14 09:24:15 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2015-09-14 09:31:26 +0200
commite42ee69988fc770314a355e6acd417e00e0c9623 (patch)
treeea6925cbd602dfb2d629db52d1639eefa72ece1a /scripts
parent226e7d7b3c30f083c422063ec107c50b3534ee0f (diff)
downloadlvm2-e42ee69988fc770314a355e6acd417e00e0c9623.tar.gz
vgimporeclone: use correct cache dir path
Commit 00b36ef06acb15c82d7c9b37872753f02c638316 had a typo and missed '{' for shell variable, thus command used slightly different 'tmp' dir name for cache dir (with extra '}'). Such change was unnoticed until a recent fix in persistent filter, lvm2 missed to update cache file when --config was specified. The result was, /tmp dir was accumulating snap.XXXXX} dirs when running vgimportclose script.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vgimportclone.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vgimportclone.sh b/scripts/vgimportclone.sh
index 388d14c87..af8cf5ceb 100755
--- a/scripts/vgimportclone.sh
+++ b/scripts/vgimportclone.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright (C) 2009 Chris Procter All rights reserved.
-# Copyright (C) 2009 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2009-2015 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
#
@@ -239,7 +239,7 @@ LVMCONF=${TMP_LVM_SYSTEM_DIR}/lvm.conf
CMD_CONFIG_LINE="devices { \
scan = [ \"${TMP_LVM_SYSTEM_DIR}\" ] \
- cache_dir = \"$TMP_LVM_SYSTEM_DIR}/cache\"
+ cache_dir = \"${TMP_LVM_SYSTEM_DIR}/cache\"
global_filter = [ \"a|.*|\" ] \
${FILTER}
} \