mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
php: Fix bug in PHP tests.
We partitioned the disk, and then tried to create a PV on the whole disk. LVM gave the error: Device /dev/vda not found (or ignored by filtering). It is unclear how this bug persisted for so long. It might be due to a change in LVM.
This commit is contained in:
@@ -23,8 +23,8 @@ fclose ($fp);
|
||||
if (! guestfs_add_drive ($g, $tmp) ||
|
||||
! guestfs_launch ($g) ||
|
||||
! guestfs_part_disk ($g, "/dev/sda", "mbr") ||
|
||||
! guestfs_pvcreate ($g, "/dev/sda") ||
|
||||
! guestfs_vgcreate ($g, "VG", array ("/dev/sda")) ||
|
||||
! guestfs_pvcreate ($g, "/dev/sda1") ||
|
||||
! guestfs_vgcreate ($g, "VG", array ("/dev/sda1")) ||
|
||||
! guestfs_lvcreate ($g, "LV", "VG", 64) ||
|
||||
! guestfs_mkfs ($g, "ext2", "/dev/VG/LV")) {
|
||||
die ("Error: ".guestfs_last_error ($g)."\n");
|
||||
|
||||
Reference in New Issue
Block a user