~ubuntu-branches/ubuntu/vivid/lvm2/vivid

« back to all changes in this revision

Viewing changes to test/t-vgchange-maxlv.sh

  • Committer: Package Import Robot
  • Author(s): Bastian Blank
  • Date: 2012-05-01 20:27:50 UTC
  • mto: (3.1.23 sid)
  • mto: This revision was merged to the branch mainline in revision 72.
  • Revision ID: package-import@ubuntu.com-20120501202750-gljjjtblowwq9mw8
Tags: upstream-2.02.95
ImportĀ upstreamĀ versionĀ 2.02.95

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
# Copyright (C) 2010 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/test
13
 
 
14
 
aux prepare_dmeventd
15
 
aux prepare_pvs 3
16
 
 
17
 
vgcreate -c n -l 2 $vg $dev1 $dev2 $dev3
18
 
lvcreate -n one -l 1 $vg
19
 
lvcreate -n two -l 1 $vg
20
 
not lvcreate -n three -l 1 $vg
21
 
vgchange -an $vg
22
 
vgremove -ff $vg
23
 
 
24
 
vgcreate -c n -l 3 $vg $dev1 $dev2 $dev3
25
 
lvcreate -n one -l 1 $vg
26
 
lvcreate -n snap -s -l 1 $vg/one
27
 
lvcreate -n two -l 1 $vg
28
 
not lvcreate -n three -l 1 $vg
29
 
vgchange --monitor y $vg
30
 
vgchange -an $vg 2>&1 | tee vgchange.out
31
 
not grep "event server" vgchange.out