2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2013-08-14 01:25:49 +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-08-14 01:25:49 +04:00
2016-02-23 01:13:42 +03:00
SKIP_WITH_LVMLOCKD = 1
2015-10-27 17:10:06 +03:00
SKIP_WITH_LVMPOLLD = 1
2013-08-14 01:25:49 +04:00
2015-10-27 17:10:06 +03:00
. lib/inittest
2015-05-09 02:59:18 +03:00
2013-08-14 01:25:49 +04:00
aux prepare_vg 3
lvcreate -n blabla -L 1 $vg
2014-02-27 17:49:49 +04:00
dd if = /dev/urandom bs = 512 seek = 2 count = 32 of = " $dev2 "
2013-08-14 01:25:49 +04:00
# TODO: aux lvmconf "global/locking_type = 4"
2018-03-09 22:18:38 +03:00
vgscan 2>& 1 | tee vgscan.out || true
2014-06-08 22:16:13 +04:00
2013-08-14 01:25:49 +04:00
if test -e LOCAL_LVMETAD; then
2018-03-09 22:18:38 +03:00
not grep "Failed" vgscan.out
2013-08-14 01:25:49 +04:00
else
2018-03-09 22:18:38 +03:00
grep "Failed" vgscan.out
2013-08-14 01:25:49 +04:00
fi
2014-02-27 17:49:49 +04:00
dd if = /dev/urandom bs = 512 seek = 2 count = 32 of = " $dev2 "
aux notify_lvmetad " $dev2 "
2018-03-09 22:18:38 +03:00
vgck $vg 2>& 1 | tee vgck.out || true
2013-08-14 01:25:49 +04:00
grep Incorrect vgck.out
2014-02-27 02:25:30 +04:00
vgremove -ff $vg