update disk_custom_resize_lvm and add more partitioning needles

This commit is contained in:
Trevor Cooper 2021-08-14 22:30:36 -07:00
parent b3f12fef7d
commit 38f1d5171d
23 changed files with 184 additions and 15 deletions

View File

@ -0,0 +1,16 @@
{
"area": [
{
"width": 109,
"xpos": 547,
"type": "match",
"ypos": 465,
"height": 17
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"anaconda_part_add_mountpoint"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View File

@ -0,0 +1,20 @@
{
"area": [
{
"height": 21,
"width": 79,
"xpos": 608,
"type": "match",
"ypos": 359,
"click_point": {
"xpos": 10.5,
"ypos": 9.5
}
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"anaconda_part_device_reformat"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

@ -0,0 +1,16 @@
{
"area": [
{
"height": 22,
"ypos": 139,
"xpos": 394,
"type": "match",
"width": 74
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"device_root_resized_twelve"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"ypos": 270,
"width": 34,
"xpos": 505,
"type": "match",
"height": 19
}
],
"properties": [],
"tags": [
"anaconda_part_fs_ext4"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@ -0,0 +1,16 @@
{
"area": [
{
"height": 25,
"width": 87,
"xpos": 497,
"type": "match",
"ypos": 126
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"anaconda_part_mountpoint_selected"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View File

@ -0,0 +1,20 @@
{
"area": [
{
"xpos": 26,
"ypos": 627,
"width": 49,
"height": 15,
"type": "match",
"click_point": {
"xpos": 24.5,
"ypos": 7.5
}
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"anaconda_part_add"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -0,0 +1,18 @@
{
"area": [
{
"ypos": 242,
"xpos": 64,
"type": "match",
"width": 33,
"height": 18
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"ENV-FLAVOR-server",
"LANGUAGE-english",
"anaconda_part_scheme_lvm"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -0,0 +1,18 @@
{
"area": [
{
"type": "match",
"xpos": 61,
"width": 115,
"ypos": 212,
"height": 20
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"ENV-FLAVOR-server",
"LANGUAGE-english",
"anaconda_part_scheme_standard"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -1,23 +1,17 @@
{
"area": [
{
"xpos": 44,
"ypos": 136,
"width": 84,
"height": 20,
"type": "match"
},
{
"xpos": 494,
"ypos": 151,
"width": 47,
"height": 23,
"type": "match"
"ypos": 134,
"width": 79,
"xpos": 41,
"type": "match",
"height": 21
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"ENV-FLAVOR-server",
"anaconda_part_select_root"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -0,0 +1,18 @@
{
"area": [
{
"ypos": 573,
"width": 98,
"type": "match",
"xpos": 882,
"height": 20
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"ENV-FLAVOR-server",
"LANGUAGE-english",
"anaconda_part_update_settings"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,16 @@
{
"area": [
{
"ypos": 321,
"width": 91,
"xpos": 39,
"type": "match",
"height": 18
}
],
"properties": [],
"tags": [
"ENV-DISTRI-rocky",
"anaconda_part_use_current"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -56,14 +56,16 @@ sub run {
type_very_safely "/";
# Skip to the Size window
send_key "tab";
type_very_safely "13 GiB";
type_very_safely "12 GiB";
# Reformat and update the partition
assert_and_click "anaconda_part_device_reformat";
assert_and_click "anaconda_part_update_settings";
# give it a second or two to update
wait_still_screen 2;
# Check that the partition has been resized for 13GiB
assert_screen "device_root_resized_thirteen";
# Fedora original here as to resize to 13GiB but Rocky default / partition
# size is 12.5GiB and we can only resize down.
# Check that the partition has been resized for 12GiB
assert_screen "device_root_resized_twelve";
# Add new /home partition into the emptied space.
assert_and_click "anaconda_part_add";