mirror of
https://pagure.io/fedora-qa/createhdds.git
synced 2024-11-14 04:44:21 +00:00
c946801df6
With the new 2G EFI system partition size, the delete_partial test that uses this disk image is failing. We've reported the bug, but we don't want the test to fail the same way every day, we want to catch any other bugs that show up. Tweaking the disk image so it has a 6G and a 4G partition (instead of two 5G partitions) and the test uses the 6G partition seems to work around the problem, so let's do that. Signed-off-by: Adam Williamson <awilliam@redhat.com>
203 lines
5.5 KiB
JSON
203 lines
5.5 KiB
JSON
{
|
|
"guestfs" : [
|
|
{
|
|
"name" : "full",
|
|
"size" : "10G",
|
|
"labels" : ["mbr", "gpt"],
|
|
"parts" : [
|
|
{
|
|
"filesystem" : "ext4",
|
|
"type" : "p",
|
|
"start" : "4096",
|
|
"end" : "12582093"
|
|
},
|
|
{
|
|
"filesystem" : "ext4",
|
|
"type" : "p",
|
|
"start" : "12582094",
|
|
"end" : "-4097"
|
|
}
|
|
],
|
|
"writes" : [
|
|
{
|
|
"part" : "1",
|
|
"path" : "/testfile",
|
|
"content" : "Hello, world!"
|
|
},
|
|
{
|
|
"part" : "2",
|
|
"path" : "/testfile",
|
|
"content" : "Oh, hi Mark"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name" : "freespace",
|
|
"size" : "10G",
|
|
"labels" : ["mbr", "gpt"],
|
|
"parts" : [
|
|
{
|
|
"filesystem" : "ext4",
|
|
"type" : "p",
|
|
"start" : "4096",
|
|
"end" : "2097152"
|
|
}
|
|
],
|
|
"writes" : [
|
|
{
|
|
"part" : "1",
|
|
"path" : "/testfile",
|
|
"content" : "Hello, world!"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name" : "ks",
|
|
"size" : "100M",
|
|
"imgver" : "6",
|
|
"parts" : [
|
|
{
|
|
"filesystem" : "ext4",
|
|
"type" : "p",
|
|
"start" : "4096",
|
|
"end" : "-1"
|
|
}
|
|
],
|
|
"uploads" : [
|
|
{
|
|
"part" : "1",
|
|
"target" : "/root-user-crypted-net.ks",
|
|
"source" : "root-user-crypted-net.ks"
|
|
},
|
|
{
|
|
"part" : "1",
|
|
"target" : "/freeipa.ks",
|
|
"source" : "freeipa.ks"
|
|
},
|
|
{
|
|
"part" : "1",
|
|
"target" : "/freeipaclient.ks",
|
|
"source" : "freeipaclient.ks"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name" : "updates_img",
|
|
"size" : "100M",
|
|
"imgver" : "2",
|
|
"parts" : [
|
|
{
|
|
"filesystem" : "ext4",
|
|
"label" : "UPDATES_IMG",
|
|
"type" : "p",
|
|
"start" : "4096",
|
|
"end" : "-1"
|
|
}
|
|
],
|
|
"uploads" : [
|
|
{
|
|
"part" : "1",
|
|
"target" : "/updates.img",
|
|
"source" : "updates.img"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name" : "shrink",
|
|
"size" : "10G",
|
|
"labels" : ["mbr"],
|
|
"filesystems" : ["ext4", "ntfs"],
|
|
"parts" : [
|
|
{
|
|
"type" : "p",
|
|
"start" : "4096",
|
|
"end" : "-4097"
|
|
}
|
|
],
|
|
"writes" : [
|
|
{
|
|
"part" : "1",
|
|
"path" : "/testfile",
|
|
"content" : "Hello, world!"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"virtinstall" : [
|
|
{
|
|
"name" : "minimal",
|
|
"releases" : {
|
|
"-1" : ["x86_64", "ppc64le"],
|
|
"-2" : ["x86_64", "ppc64le"],
|
|
"stable": ["x86_64", "aarch64"],
|
|
"branched": ["x86_64", "aarch64"],
|
|
"rawhide": ["x86_64"]
|
|
},
|
|
"size" : "10",
|
|
"imgver": "3"
|
|
},
|
|
{
|
|
"name" : "minimal-uefi",
|
|
"releases" : {
|
|
"-1" : ["x86_64", "aarch64"],
|
|
"-2" : ["x86_64"],
|
|
"branched": ["x86_64"]
|
|
},
|
|
"size" : "10",
|
|
"imgver": "3",
|
|
"bootopts": "uefi"
|
|
},
|
|
{
|
|
"name" : "desktop",
|
|
"releases" : {
|
|
"-1" : ["ppc64le"],
|
|
"stable" : ["x86_64", "aarch64"],
|
|
"branched": ["x86_64", "aarch64"],
|
|
"rawhide": ["x86_64"]
|
|
},
|
|
"size" : "20",
|
|
"imgver": "4",
|
|
"variant": "Workstation"
|
|
},
|
|
{
|
|
"name" : "desktopencrypt",
|
|
"releases" : {
|
|
"stable" : ["x86_64", "aarch64"],
|
|
"branched" : ["x86_64", "aarch64"]
|
|
},
|
|
"size" : "20",
|
|
"variant": "Workstation"
|
|
},
|
|
{
|
|
"name" : "server",
|
|
"releases" : {
|
|
"stable" : ["x86_64", "ppc64le", "aarch64"],
|
|
"branched": ["x86_64", "ppc64le", "aarch64"],
|
|
"rawhide": ["x86_64", "ppc64le"]
|
|
},
|
|
"size" : "7",
|
|
"imgver": "3",
|
|
"variant": "Server"
|
|
},
|
|
{
|
|
"name" : "kde",
|
|
"releases" : {
|
|
"stable" : ["x86_64"],
|
|
"branched" : ["x86_64"],
|
|
"rawhide": ["x86_64"]
|
|
},
|
|
"size" : "20",
|
|
"imgver": "4"
|
|
},
|
|
{
|
|
"name" : "support",
|
|
"releases" : {
|
|
"-1" : ["x86_64", "ppc64le", "aarch64"]
|
|
},
|
|
"size" : "11",
|
|
"imgver" : "5"
|
|
}
|
|
],
|
|
"renames" : []
|
|
}
|