Skip to content

Commit

Permalink
Merge pull request os-autoinst#18064 from paolostivanin/p137699
Browse files Browse the repository at this point in the history
dbus_services_exposure: whitelist virtqemud on 15-SP6+
  • Loading branch information
paolostivanin authored Oct 25, 2023
2 parents 7916f33 + 7dc80a1 commit 8e4fd1f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/security/atsec/dbus_services_exposure.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ use testapi;
use utils;
use atsec_test;
use Data::Dumper;
use version_utils 'is_sle';
use Utils::Architectures 'is_s390x';

my %white_list_for_busctl = (
systemd => 1,
Expand Down Expand Up @@ -86,6 +88,12 @@ sub run {
my %busctl_list_result = parse_results($output_busctl_list);
record_info('Results of parsing busctl list', Dumper(\%busctl_list_result));

# https://bugzilla.suse.com/show_bug.cgi?id=1216538
if (is_sle('>=15-SP6') && is_s390x) {
$white_list_for_busctl{virtqemud} = 1;
push(@atsec_test::white_list_for_dbus, '1.28', '1.38');
}

# Analyse the results.
foreach my $wl (@atsec_test::white_list_for_dbus) {

Expand Down

0 comments on commit 8e4fd1f

Please sign in to comment.