2012-03-16 17:00:05 +04:00
#!/bin/sh
2010-05-24 19:32:20 +04:00
# Copyright (C) 2008 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
2010-05-24 19:32:20 +04:00
2015-05-09 02:59:18 +03:00
test -e LOCAL_LVMPOLLD && skip
2014-03-17 19:32:42 +04:00
aux mirror_recovery_works || skip
2011-01-05 03:16:18 +03:00
aux prepare_vg 5
2014-05-26 16:38:46 +04:00
# ordinary mirrors
2013-08-08 00:48:31 +04:00
lvcreate -aey --type mirror -m 3 --ignoremonitoring -L 1 -n 4way $vg
2015-02-12 12:40:57 +03:00
aux wait_for_sync $vg 4way
2014-05-26 16:38:46 +04:00
aux disable_dev --error --silent " $dev2 " " $dev4 "
2014-02-23 02:08:55 +04:00
mkfs.ext3 " $DM_DEV_DIR / $vg /4way " &
2011-01-05 17:15:01 +03:00
sleep 1
2014-05-26 16:38:46 +04:00
dmsetup status
2010-05-24 19:32:20 +04:00
echo n | lvconvert --repair $vg /4way 2>& 1 | tee 4way.out
2014-05-26 16:38:46 +04:00
aux enable_dev --silent " $dev2 " " $dev4 "
2015-05-08 20:17:00 +03:00
lvs -a -o +devices $vg | tee out
2013-06-15 13:21:03 +04:00
not grep unknown out
2010-05-24 19:32:20 +04:00
vgreduce --removemissing $vg
check mirror $vg 4way
lvchange -a n $vg /4way
2011-01-05 17:15:01 +03:00
wait
2012-03-16 17:00:05 +04:00
vgremove -f $vg