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

« back to all changes in this revision

Viewing changes to test/shell/lvconvert-repair-raid-dmeventd.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
which mkfs.ext3 || skip
 
15
aux have_raid 1 3 0 || skip
 
16
 
 
17
aux prepare_dmeventd
 
18
aux prepare_vg 5
 
19
 
 
20
lvcreate -aey --type raid1 -m 3 --ignoremonitoring -L 1 -n 4way $vg
 
21
lvchange --monitor y $vg/4way
 
22
lvs -a -o all,lv_modules $vg
 
23
lvdisplay --maps $vg
 
24
aux disable_dev "$dev2" "$dev4"
 
25
mkfs.ext3 "$DM_DEV_DIR/$vg/4way"
 
26
sleep 10 # FIXME: need a "poll" utility, akin to "check"
 
27
aux enable_dev "$dev2" "$dev4"
 
28
 
 
29
vgremove -ff $vg