Merge pull request #88 from lumarel/workaround-issue-82

Workaround for #82
This commit is contained in:
Lukas Magauer 2022-05-14 17:56:41 +02:00 committed by GitHub
commit 2cc2eab46b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";