2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2013-06-13 14:05:53 +04:00
# Copyright (C) 2013 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2013-06-13 14:05:53 +04:00
# Test vgsplit command options for validity
2016-02-23 01:13:42 +03:00
SKIP_WITH_LVMLOCKD = 1
2015-10-27 17:10:06 +03:00
SKIP_WITH_LVMPOLLD = 1
2015-05-17 18:22:18 +03:00
export LVM_TEST_THIN_REPAIR_CMD = ${ LVM_TEST_THIN_REPAIR_CMD -/bin/false }
2014-06-06 19:40:04 +04:00
. lib/inittest
2013-06-13 14:05:53 +04:00
aux have_thin 1 0 0 || skip
aux prepare_devs 5
2017-07-06 20:41:25 +03:00
get_devs
2013-06-13 14:05:53 +04:00
2017-07-06 20:41:25 +03:00
vgcreate " $vg1 " " ${ DEVICES [@] } "
2013-06-13 14:05:53 +04:00
lvcreate -T -L8M $vg1 /pool1 -V10M -n $lv1 " $dev1 " " $dev2 "
lvcreate -T -L8M $vg1 /pool2 -V10M -n $lv2 " $dev3 " " $dev4 "
2020-09-24 21:49:52 +03:00
lvcreate -s -L2M -n snap $vg1 /$lv1 " $dev2 "
2013-06-13 14:05:53 +04:00
# Test with external origin if available
lvcreate -l1 -an -pr --zero n -n eorigin $vg1 " $dev5 "
aux have_thin 1 5 0 && lvcreate -an -s $vg1 /eorigin -n $lv3 --thinpool $vg1 /pool1
# Cannot move active thin
not vgsplit $vg1 $vg2 " $dev1 " " $dev2 " " $dev5 "
vgchange -an $vg1
not vgsplit $vg1 $vg2 " $dev1 "
not vgsplit $vg1 $vg2 " $dev2 " " $dev3 "
vgsplit $vg1 $vg2 " $dev1 " " $dev2 " " $dev5 "
lvs -a -o+devices $vg1 $vg2
vgmerge $vg1 $vg2
vgremove -ff $vg1
2018-02-27 15:45:39 +03:00
# Test vgsplit with ext.origin:
if aux have_thin 1 5 0; then
vgcreate " $vg1 " " ${ DEVICES [@] } "
lvcreate -T -L8M $vg1 /pool1 -V10M -n $lv1 " $dev1 " " $dev2 "
lvcreate -l1 -an -pr -n $lv2 $vg1 " $dev3 "
lvcreate -s $vg1 /$lv2 -n $lv3 --thinpool $vg1 /pool1
lvcreate -l1 -n $lv4 $vg1 " $dev4 "
vgchange -an $vg1
# Can not split ext.origin from thin-data:
not vgsplit $vg1 $vg2 " $dev1 " " $dev2 "
not vgsplit $vg1 $vg2 " $dev3 "
vgsplit $vg1 $vg2 " $dev1 " " $dev2 " " $dev3 "
vgmerge $vg1 $vg2
vgremove -ff $vg1
fi