Don't prepend $DATA_DIR to volume path that already has it

Otherwise the test is testing the wrong file.

Change-Id: Ia7dcda8d4f3a1fe87e74f4605a7010b66c38fa14
This commit is contained in:
Chris Dent 2015-02-16 21:56:29 +00:00
parent bae736e1e0
commit 4c20607e0a
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ function _create_lvm_volume_group {
local backing_file=$DATA_DIR/$vg$BACKING_FILE_SUFFIX
if ! sudo vgs $vg; then
# Only create if the file doesn't already exists
[[ -f $DATA_DIR/$backing_file ]] || truncate -s $size $backing_file
[[ -f $backing_file ]] || truncate -s $size $backing_file
local vg_dev=`sudo losetup -f --show $backing_file`
# Only create volume group if it doesn't already exist