mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
ed5686d981
lvm-utils.sh. Clears up lots of unused code, should have little observable impact (it does change test directory layout slightly).
19 lines
401 B
Bash
19 lines
401 B
Bash
. ./test-utils.sh
|
|
|
|
prepare_lvmconf '[ "a/dev\/mirror/", "a/dev\/mapper\/.*$/", "a/dev\/LVMTEST/", "r/.*/" ]'
|
|
aux prepare_devs 3
|
|
|
|
pvcreate $devs
|
|
vgcreate $vg1 $dev1 $dev2
|
|
lvcreate -n $lv1 -l 100%FREE $vg1
|
|
|
|
#top VG
|
|
pvcreate $DM_DEV_DIR/$vg1/$lv1
|
|
vgcreate $vg $DM_DEV_DIR/$vg1/$lv1 $dev3
|
|
|
|
vgchange -a n $vg
|
|
vgchange -a n $vg1
|
|
|
|
# this should fail but not segfault, RHBZ 481793.
|
|
not vgsplit $vg $vg1 $dev3
|