2010-10-29 20:43:51 +04:00
#!/bin/bash
2012-10-14 21:45:59 +04:00
# Copyright (C) 2010-2012 Red Hat, Inc. All rights reserved.
2010-10-29 20:43:51 +04:00
#
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# no automatic extensions please
2011-01-05 03:16:18 +03:00
. lib/test
2010-10-29 20:43:51 +04:00
2012-03-16 17:00:05 +04:00
which mkfs.ext2 || skip
2010-10-29 20:43:51 +04:00
2011-01-05 03:16:18 +03:00
aux lvmconf "activation/snapshot_autoextend_percent = 0" \
"activation/snapshot_autoextend_threshold = 100"
2010-10-29 20:43:51 +04:00
aux prepare_dmeventd
2012-03-16 17:00:05 +04:00
aux prepare_vg 2
mntdir = " ${ PREFIX } mnt "
2010-10-29 20:43:51 +04:00
2013-06-15 13:21:03 +04:00
lvcreate -aey -L8 -n base $vg
2012-03-16 17:00:05 +04:00
mkfs.ext2 " $DM_DEV_DIR / $vg /base "
2010-10-29 20:43:51 +04:00
2013-06-15 13:21:03 +04:00
lvcreate -s -L4 -n snap $vg /base
2010-10-29 20:43:51 +04:00
lvchange --monitor y $vg /snap
2012-03-16 17:00:05 +04:00
mkdir " $mntdir "
mount " $DM_DEV_DIR /mapper/ $vg -snap " " $mntdir "
2010-10-29 20:43:51 +04:00
mount
2012-03-16 17:00:05 +04:00
cat /proc/mounts | grep " $mntdir "
2013-06-15 13:21:03 +04:00
dd if = /dev/zero of = " $mntdir /file $1 " bs = 1M count = 5
2010-10-29 20:43:51 +04:00
sync
2012-10-14 21:45:59 +04:00
#dmeventd only checks every 10 seconds :(
for i in { 1..10} ; do
cat /proc/mounts | grep " $mntdir " || break
sleep 1
done
2010-10-29 20:43:51 +04:00
2012-03-16 17:00:05 +04:00
cat /proc/mounts | not grep " $mntdir "
vgremove -f $vg