Rewrite XFS partitioning suite for custom-gui
This commit is contained in:
parent
2055831866
commit
2ceca56d32
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 506,
|
||||||
|
"ypos": 361,
|
||||||
|
"width": 32,
|
||||||
|
"height": 14,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"ENV-DISTRI-rocky",
|
||||||
|
"LANGUAGE-english",
|
||||||
|
"anaconda_custom_part_fs_xfs_selected"
|
||||||
|
]
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
@ -388,7 +388,7 @@
|
|||||||
"ROOT_PASSWORD": "weakpassword"
|
"ROOT_PASSWORD": "weakpassword"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"install_gui_standard_partition_ext4": {
|
"install_custom_gui_standard_partition_ext4": {
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"rocky-dvd-iso-aarch64-*-aarch64": 40,
|
"rocky-dvd-iso-aarch64-*-aarch64": 40,
|
||||||
"rocky-dvd-iso-x86_64-*-64bit": 40,
|
"rocky-dvd-iso-x86_64-*-64bit": 40,
|
||||||
@ -412,14 +412,14 @@
|
|||||||
"ROOT_PASSWORD": "weakpassword"
|
"ROOT_PASSWORD": "weakpassword"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"install_blivet_xfs": {
|
"install_custom_gui_xfs": {
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"rocky-universal-aarch64-*-aarch64": 40,
|
"rocky-universal-aarch64-*-aarch64": 40,
|
||||||
"rocky-universal-x86_64-*-64bit": 40,
|
"rocky-universal-x86_64-*-64bit": 40,
|
||||||
"rocky-universal-x86_64-*-uefi": 41
|
"rocky-universal-x86_64-*-uefi": 41
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"PARTITIONING": "custom_blivet_xfs",
|
"PARTITIONING": "custom_gui_xfs",
|
||||||
"POSTINSTALL": "disk_custom_xfs_postinstall",
|
"POSTINSTALL": "disk_custom_xfs_postinstall",
|
||||||
"ROOT_PASSWORD": "weakpassword"
|
"ROOT_PASSWORD": "weakpassword"
|
||||||
}
|
}
|
||||||
|
39
tests/disk_custom_gui_xfs.pm
Normal file
39
tests/disk_custom_gui_xfs.pm
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
use base "anacondatest";
|
||||||
|
use strict;
|
||||||
|
use testapi;
|
||||||
|
use anaconda;
|
||||||
|
|
||||||
|
sub run {
|
||||||
|
my $self = shift;
|
||||||
|
# Go to INSTALLATION DESTINATION and ensure the disk is selected.
|
||||||
|
# Because PARTITIONING starts with 'custom', this will select custom-gui.
|
||||||
|
select_disks();
|
||||||
|
assert_and_click "anaconda_spoke_done";
|
||||||
|
|
||||||
|
if (get_var("UEFI")) {
|
||||||
|
# if we're running on UEFI, we need esp
|
||||||
|
custom_add_partition(size => 512, mountpoint => '/boot/efi', filesystem => 'efi_filesystem');
|
||||||
|
}
|
||||||
|
if (get_var("OFW")) {
|
||||||
|
custom_add_partition(size => 4, filesystem => 'ppc_prep_boot');
|
||||||
|
}
|
||||||
|
|
||||||
|
custom_add_partition(filesystem => 'xfs', size => 512, mountpoint => '/boot');
|
||||||
|
custom_add_partition(filesystem => 'swap', size => 512, mountpoint => 'swap');
|
||||||
|
custom_add_partition(filesystem => 'xfs', mountpoint => '/');
|
||||||
|
|
||||||
|
assert_and_click "anaconda_spoke_done";
|
||||||
|
assert_and_click "anaconda_part_accept_changes";
|
||||||
|
|
||||||
|
# Anaconda hub
|
||||||
|
assert_screen "anaconda_main_hub", 300; #
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
sub test_flags {
|
||||||
|
return { fatal => 1 };
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
# vim: set sw=4 et:
|
Loading…
Reference in New Issue
Block a user