Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Major Linux Security Module conflicts #14333

Merged
merged 1 commit into from Mar 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/installation/installation_overview.pm
Expand Up @@ -101,7 +101,9 @@ sub run {
assert_screen 'inst-xen-pattern';
}
}
set_linux_security_to_none if (check_var('LINUX_SECURITY_MODULE', 'none') && is_sle('>=15-SP4'));
# the Installer of 15SP4 requires Apparmor pattern activation by default. If Apparmor not presented in PATTERNS and needle matches
# select None for Major Linux Security Module.
set_linux_security_to_none if (is_sle('>=15-SP4') && check_screen("apparmor-not-selected") && !(get_var('PATTERNS') =~ 'default|all|apparmor'));
ensure_ssh_unblocked;
$self->check_default_target();
}
Expand Down