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

Enable httpd_graceful_shutdown #21085

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/openqa/install/openqa_bootstrap.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SUSE's openQA tests

Check failure on line 1 in tests/openqa/install/openqa_bootstrap.pm

View workflow job for this annotation

GitHub Actions / CI: Running static tests with perl v5.32

File tests/openqa/install/openqa_bootstrap.pm needs tidying
#
# Copyright 2018-2019 SUSE LLC
# SPDX-License-Identifier: FSFAP
Expand All @@ -11,6 +11,7 @@
use base "consoletest";
use testapi;
use utils;
use version_utils qw(has_selinux has_selinux_by_default);


sub run {
Expand All @@ -20,6 +21,10 @@
record_info('No nested virt', 'No /dev/kvm found');
}

# allow connect to httpd_port
# if (has_selinux || has_selinux_by_default ) {
assert_script_run 'setsebool -P httpd_graceful_shutdown 1';
#}
zypper_call('in openQA-bootstrap');
my $proxy_var = get_var('OPENQA_WEB_PROXY') ? 'setup_web_proxy=' . get_var('OPENQA_WEB_PROXY') . ' ' : '';
assert_script_run($proxy_var . "/usr/share/openqa/script/openqa-bootstrap", 4000);
Expand Down
Loading