2012-03-16 17:00:05 +04:00
#!/bin/sh
2010-07-28 16:20:38 +04:00
# Copyright (C) 2010 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,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2014-06-06 19:40:04 +04:00
. lib/inittest
2009-11-19 16:55:40 +03:00
2011-01-05 03:16:18 +03:00
aux prepare_vg 4
2009-11-19 16:55:40 +03:00
2014-05-15 12:25:25 +04:00
lvcreate -aey --type mirror -m 1 -L 10M --nosync -n lv $vg
2012-05-16 19:01:06 +04:00
2014-05-15 12:25:25 +04:00
# Create snapshot of a mirror origin
2012-05-16 19:01:06 +04:00
lvcreate -s $vg /lv -L 10M -n snap
2012-05-01 23:21:24 +04:00
2009-11-19 16:55:40 +03:00
# Down-convert (mirror -> linear) under a snapshot
lvconvert -m0 $vg /lv
# Up-convert (linear -> mirror)
2013-08-08 00:48:31 +04:00
lvconvert --type mirror -m2 $vg /lv
2009-11-19 16:55:40 +03:00
# Down-convert (mirror -> mirror)
2013-08-08 00:48:31 +04:00
lvconvert -m 1 $vg /lv
2009-11-19 16:55:40 +03:00
# Up-convert (mirror -> mirror) -- Not supported!
not lvconvert -m2 $vg /lv
# Log conversion (disk -> core)
lvconvert --mirrorlog core $vg /lv
2010-03-27 01:15:43 +03:00
# Log conversion (core -> mirrored)
2013-06-15 13:21:03 +04:00
# FIXME on cluster
test -e LOCAL_CLVMD && SHOULD = should
$SHOULD lvconvert --mirrorlog mirrored $vg /lv
2009-11-19 16:55:40 +03:00
2010-03-27 01:15:43 +03:00
# Log conversion (mirrored -> core)
lvconvert --mirrorlog core $vg /lv
2009-11-19 16:55:40 +03:00
# Log conversion (core -> disk)
lvconvert --mirrorlog disk $vg /lv
2012-03-16 17:00:05 +04:00
## Clean-up
vgremove -f $vg