~ubuntu-branches/debian/sid/lvm2/sid

« back to all changes in this revision

Viewing changes to test/shell/lvmetad-lvscan-cache.sh

  • Committer: Package Import Robot
  • Author(s): Bastian Blank
  • Date: 2014-08-19 15:37:06 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20140819153706-i1gaio8lg534dara
Tags: 2.02.109-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Copyright (C) 2014 Red Hat, Inc. All rights reserved.
 
3
#
 
4
# This copyrighted material is made available to anyone wishing to use,
 
5
# modify, copy, or redistribute it subject to the terms and conditions
 
6
# of the GNU General Public License v.2.
 
7
#
 
8
# You should have received a copy of the GNU General Public License
 
9
# along with this program; if not, write to the Free Software Foundation,
 
10
# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
11
 
 
12
. lib/inittest
 
13
 
 
14
test -e LOCAL_LVMETAD || skip
 
15
 
 
16
aux prepare_pvs 2
 
17
 
 
18
vgcreate $vg1 $dev1 $dev2
 
19
lvcreate -n testlv -m 1 -l 1 $vg1
 
20
vgs | grep $vg1
 
21
 
 
22
lvscan --cache $vg1/testlv
 
23
 
 
24
vgs | grep $vg1
 
25
 
 
26
aux disable_dev $dev2
 
27
 
 
28
# pvscan --cache already ran for the disabled device above, this should be a
 
29
# no-op (but should not segfault!)
 
30
lvscan --cache $vg1/testlv
 
31
 
 
32
vgremove -ff $vg1