Skip to content

Commit

Permalink
Merge pull request #21129 from grisu48/no_firewall_on_cloud
Browse files Browse the repository at this point in the history
Skip firewalld on Cloud image
  • Loading branch information
grisu48 authored Feb 6, 2025
2 parents a1f75cf + 53379be commit d29eb6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/main_common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1269,8 +1269,10 @@ sub load_consoletests {
loadtest "console/yast2_bootloader" unless ((is_sle("16+") || is_leap("16.0+")) || is_bootloader_sdboot);
}
loadtest "console/vim" if is_opensuse || is_sle('<15') || !get_var('PATTERNS') || check_var_array('PATTERNS', 'enhanced_base');
# textmode install comes without firewall by default atm on openSUSE. For virtualization server xen and kvm is disabled by default: https://fate.suse.com/324207
if ((is_sle || !check_var("DESKTOP", "textmode")) && !is_krypton_argon && !is_virtualization_server && get_var('FLAVOR', '') !~ /JeOS-for-OpenStack-Cloud.*/) {
# textmode install comes without firewall by default atm on openSUSE.
# For virtualization server xen and kvm is disabled by default: https://fate.suse.com/324207
# Cloud images come without firewalld by default
if ((is_sle || !check_var("DESKTOP", "textmode")) && !is_krypton_argon && !is_virtualization_server && get_var('FLAVOR', '') !~ /JeOS-for-OpenStack-Cloud.*/ && get_var('FLAVOR', '') !~ /Minimal-VM-Cloud/) {
loadtest "console/firewall_enabled";
}
if (is_jeos) {
Expand Down

0 comments on commit d29eb6c

Please sign in to comment.