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

« back to all changes in this revision

Viewing changes to test/t-lvconvert-twostep.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_vg 4
15
 
 
16
 
lvcreate -m 1 --mirrorlog disk --ig -L 1 -n mirror $vg
17
 
not lvconvert -m 2 --mirrorlog core $vg/mirror $dev3 2>&1 | tee errs
18
 
grep "two steps" errs
19
 
 
20
 
lvconvert -m 2 $vg/mirror $dev3
21
 
lvconvert --mirrorlog core $vg/mirror
22
 
not lvconvert -m 1 --mirrorlog disk $vg/mirror $dev3 2>&1 | tee errs
23
 
grep "two steps" errs
24
 
 
25
 
not lvconvert -m 1 --mirrorlog mirrored $vg/mirror $dev3 $dev4 2>&1 | tee errs
26
 
grep "two steps" errs