2012-03-16 13:00:05 +00:00
#!/bin/sh
2010-07-28 12:20:38 +00: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
2011-01-05 00:16:18 +00:00
. lib/test
2009-11-19 13:55:40 +00:00
2011-01-05 00:16:18 +00:00
aux prepare_vg 4
2009-11-19 13:55:40 +00:00
2012-05-01 19:21:24 +00:00
# Attempt to create snapshot of a mirror origin - should fail
2013-08-07 15:48:31 -05:00
lvcreate -aey --type mirror -m 1 -L 10M -n lv $vg
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
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