summaryrefslogtreecommitdiffstats
path: root/test/TEST-17-LVM-THIN/create-root.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/TEST-17-LVM-THIN/create-root.sh')
-rwxr-xr-xtest/TEST-17-LVM-THIN/create-root.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/TEST-17-LVM-THIN/create-root.sh b/test/TEST-17-LVM-THIN/create-root.sh
index 2547d1c..8c9c298 100755
--- a/test/TEST-17-LVM-THIN/create-root.sh
+++ b/test/TEST-17-LVM-THIN/create-root.sh
@@ -11,15 +11,16 @@ udevadm control --reload
udevadm settle
set -ex
-for dev in /dev/disk/by-id/ata-disk_disk[123]; do
+modprobe dm_thin_pool
+for dev in /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_disk[123]; do
lvm pvcreate -ff -y "$dev"
done
-lvm vgcreate dracut /dev/disk/by-id/ata-disk_disk[123]
+lvm vgcreate dracut /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_disk[123]
lvm lvcreate --ignoremonitoring -l 100%FREE -T dracut/mythinpool
lvm lvcreate --ignoremonitoring -V100M -T dracut/mythinpool -n root
lvm vgchange --ignoremonitoring -ay
-mkfs.ext4 /dev/dracut/root
+mkfs.ext4 -q /dev/dracut/root
mkdir -p /sysroot
mount -t ext4 /dev/dracut/root /sysroot
cp -a -t /sysroot /source/*
@@ -27,7 +28,7 @@ umount /sysroot
lvm lvchange -a n /dev/dracut/root
if ! dmsetup status | grep -q out_of_data_space; then
- echo "dracut-root-block-created" | dd oflag=direct,dsync of=/dev/disk/by-id/ata-disk_marker
+ echo "dracut-root-block-created" | dd oflag=direct,dsync of=/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_marker status=none
fi
sync