2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2015-10-20 16:41:42 +03:00
# Copyright (C) 2015 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
2015-10-20 16:41:42 +03:00
2016-02-23 01:13:42 +03:00
SKIP_WITH_LVMLOCKD = 1
2015-10-27 02:45:37 +03:00
SKIP_WITHOUT_LVMETAD = 1
SKIP_WITH_LVMPOLLD = 1
2015-10-20 16:41:42 +03:00
2015-10-27 02:45:37 +03:00
. lib/inittest
2015-10-20 16:41:42 +03:00
2017-07-10 11:40:09 +03:00
kill -0 " $( < LOCAL_LVMETAD) " || die "lvmetad is already dead"
2015-10-20 16:41:42 +03:00
lvmetad_timeout = 3
aux prepare_pvs 1
vgcreate $vg1 " $dev1 "
2017-07-10 11:40:09 +03:00
kill " $( < LOCAL_LVMETAD) "
2015-10-20 16:41:42 +03:00
aux prepare_lvmetad -t $lvmetad_timeout
sleep $lvmetad_timeout
# lvmetad should die after timeout, but give it some time to do so
i = 0
2017-07-10 11:40:09 +03:00
while kill -0 " $( < LOCAL_LVMETAD) " 2>/dev/null; do
2015-10-20 16:41:42 +03:00
test $i -ge $(( lvmetad_timeout*10)) && die " lvmetad didn't shutdown with optional timeout: $lvmetad_timeout seconds "
sleep .1
i = $(( i+1))
done
aux prepare_lvmetad -t 0
sleep 1
# lvmetad must not die with -t 0 option
2017-07-10 11:40:09 +03:00
kill -0 " $( < LOCAL_LVMETAD) " || die "lvmetad died"
2015-10-20 16:41:42 +03:00
2017-07-10 11:40:09 +03:00
kill " $( < LOCAL_LVMETAD) "
2015-10-20 16:41:42 +03:00
aux prepare_lvmetad -t $lvmetad_timeout
sleep 1
vgs
sleep 1
vgs
sleep 1
vgs
# check that connection to lvmetad resets the timeout
2017-07-10 11:40:09 +03:00
kill -0 " $( < LOCAL_LVMETAD) " || die "lvmetad died too soon"
2015-10-20 16:41:42 +03:00
vgremove -ff $vg1