2013-07-22 17:03:56 +04:00
#!/bin/sh
# Copyright (C) 2012 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
2013-07-22 17:03:56 +04:00
test -e LOCAL_LVMETAD || skip
2015-05-09 02:59:18 +03:00
test -e LOCAL_LVMPOLLD && skip
2013-07-22 17:03:56 +04:00
aux prepare_pvs 2
2014-03-01 02:33:30 +04:00
maj = $(( $( stat -L --printf= 0x%t " $dev2 " ) ))
min = $(( $( stat -L --printf= 0x%T " $dev2 " ) ))
2013-07-22 17:03:56 +04:00
2015-01-12 17:16:57 +03:00
# Filter out device, pvscan should trigger
# clearing of the device from lvmetad cache.
2014-03-20 02:32:25 +04:00
aux hide_dev " $dev2 "
2015-01-12 17:16:57 +03:00
pvscan --cache " $dev2 " 2>& 1 | grep "not found"
2013-07-22 17:57:18 +04:00
# pvscan with --major/--minor does not fail: lvmetad needs to
# be notified about device removal on REMOVE uevent, hence
# this should not fail so udev does not grab a "failed" state
# incorrectly. We notify device addition and removal with
# exactly the same command "pvscan --cache" - in case of removal,
# this is detected by nonexistence of the device itself.
2013-07-22 17:03:56 +04:00
pvscan --cache --major $maj --minor $min 2>& 1 | grep "not found"
2014-03-20 02:32:25 +04:00
aux unhide_dev " $dev2 "
2013-07-22 17:03:56 +04:00
2014-03-20 02:32:25 +04:00
pvscan --cache " $dev2 " 2>& 1 | not grep "not found"
2013-07-22 17:03:56 +04:00
pvscan --cache --major $maj --minor $min 2>& 1 | not grep "not found"
2014-03-20 02:32:25 +04:00
pvs | grep " $dev2 "