2017-07-02 21:38:32 +02:00
#!/usr/bin/env bash
2018-12-17 19:24:37 +01:00
# Copyright (C) 2010,2018 Red Hat, Inc. All rights reserved.
2010-07-28 12:20:38 +00:00
#
# 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 11:49:46 +01:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2010-07-28 12:20:38 +00:00
2018-05-24 09:49:48 -05:00
2016-02-22 16:13:42 -06:00
2014-06-06 17:40:04 +02:00
. lib/inittest
2009-11-19 13:55:40 +00:00
2018-12-17 19:24:37 +01:00
aux lvmconf "global/support_mirrored_mirror_log=1"
2011-01-05 00:16:18 +00:00
aux prepare_vg 4
2009-11-19 13:55:40 +00:00
2014-05-15 10:25:25 +02:00
lvcreate -aey --type mirror -m 1 -L 10M --nosync -n lv $vg
2012-05-16 15:01:06 +00:00
2014-05-15 10:25:25 +02:00
# Create snapshot of a mirror origin
2012-05-16 15:01:06 +00:00
lvcreate -s $vg /lv -L 10M -n snap
2012-05-01 19:21:24 +00:00
2009-11-19 13:55:40 +00:00
# Down-convert (mirror -> linear) under a snapshot
lvconvert -m0 $vg /lv
# Up-convert (linear -> mirror)
2013-08-07 15:48:31 -05:00
lvconvert --type mirror -m2 $vg /lv
2009-11-19 13:55:40 +00:00
# Down-convert (mirror -> mirror)
2013-08-07 15:48:31 -05:00
lvconvert -m 1 $vg /lv
2009-11-19 13:55:40 +00:00
# Up-convert (mirror -> mirror) -- Not supported!
not lvconvert -m2 $vg /lv
# Log conversion (disk -> core)
lvconvert --mirrorlog core $vg /lv
2010-03-26 22:15:43 +00:00
# Log conversion (core -> mirrored)
2013-06-15 11:21:03 +02:00
# FIXME on cluster
2017-07-11 11:18:22 +02:00
SHOULD = ""
2013-06-15 11:21:03 +02:00
test -e LOCAL_CLVMD && SHOULD = should
$SHOULD lvconvert --mirrorlog mirrored $vg /lv
2009-11-19 13:55:40 +00:00
2010-03-26 22:15:43 +00:00
# Log conversion (mirrored -> core)
lvconvert --mirrorlog core $vg /lv
2009-11-19 13:55:40 +00:00
# Log conversion (core -> disk)
lvconvert --mirrorlog disk $vg /lv
2012-03-16 13:00:05 +00:00
## Clean-up
vgremove -f $vg