summaryrefslogtreecommitdiff
path: root/test/shell/lvmetad-autoshutdown.sh
blob: 019a63474729bfda87367846b9be35e7f15f7596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/sh
# 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,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

SKIP_WITHOUT_LVMETAD=1
SKIP_WITH_LVMPOLLD=1

. lib/inittest

kill -0 $(< LOCAL_LVMETAD) || die "lvmetad is already dead"

lvmetad_timeout=3

aux prepare_pvs 1

vgcreate $vg1 "$dev1"

kill $(< LOCAL_LVMETAD)
aux prepare_lvmetad -t $lvmetad_timeout

sleep $lvmetad_timeout

# lvmetad should die after timeout, but give it some time to do so
i=0
while kill -0 $(< LOCAL_LVMETAD) 2>/dev/null; do
	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
kill -0 $(< LOCAL_LVMETAD) || die "lvmetad died"

kill $(< LOCAL_LVMETAD)
aux prepare_lvmetad -t $lvmetad_timeout

sleep 1
vgs
sleep 1
vgs
sleep 1
vgs

# check that connection to lvmetad resets the timeout
kill -0 $(< LOCAL_LVMETAD) || die "lvmetad died too soon"

vgremove -ff $vg1