Workaround for #82

This commit is contained in:
lumarel 2022-05-13 17:49:50 +02:00 committed by Al Bowles
parent 0143c3efbb
commit 127e85007b
No known key found for this signature in database
GPG Key ID: 9B42314A30F1A3D1

16
main.pm
View File

@ -175,14 +175,6 @@ sub load_install_tests() {
autotest::loadtest "tests/_anaconda_network_enable.pm";
}
## Kdump
if (get_var('ANACONDA_KDUMP') eq 'enabled') {
autotest::loadtest "tests/_anaconda_kdump_enable.pm";
}
else {
autotest::loadtest "tests/_anaconda_kdump_disable.pm";
}
## Installation source
if (get_var('MIRRORLIST_GRAPHICAL') || get_var("REPOSITORY_GRAPHICAL")) {
autotest::loadtest "tests/install_source_graphical.pm";
@ -215,6 +207,14 @@ sub load_install_tests() {
autotest::loadtest "tests/disk_guided_encrypted.pm";
}
## Kdump
if (get_var('ANACONDA_KDUMP') eq 'enabled') {
autotest::loadtest "tests/_anaconda_kdump_enable.pm";
}
else {
autotest::loadtest "tests/_anaconda_kdump_disable.pm";
}
# Start installation, set user & root passwords, reboot
# install and reboot phase is loaded automatically every time (except when KICKSTART is set)
autotest::loadtest "tests/_do_install_and_reboot.pm";