diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-07-31 20:38:28 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-08-20 23:52:51 +0200 |
commit | c2f9c6c872b75d946d19c71d8e4af3d2fd16592d (patch) | |
tree | 59688cfb0a29261913363b1481fd594ca61a243d /scripts/entrypoint.pl | |
parent | 67ed2721c8824db40092c2a1a4b301ff6c7bd509 (diff) | |
download | bugzilla-c2f9c6c872b75d946d19c71d8e4af3d2fd16592d.tar.gz bugzilla-c2f9c6c872b75d946d19c71d8e4af3d2fd16592d.tar.xz |
remove unused HTTPD_* envs from everywhere
Diffstat (limited to 'scripts/entrypoint.pl')
-rwxr-xr-x | scripts/entrypoint.pl | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/entrypoint.pl b/scripts/entrypoint.pl index e5ecc4324..21d9aebb1 100755 --- a/scripts/entrypoint.pl +++ b/scripts/entrypoint.pl @@ -83,7 +83,6 @@ sub cmd_demo { sub cmd_httpd { check_data_dir(); wait_for_db(); - check_httpd_env(); my $httpd_exit_f = run_cereal_and_httpd(); assert_httpd()->get(); @@ -208,8 +207,6 @@ sub cmd_test_bmo { sub run_prove { my (%param) = @_; - check_httpd_env(); - my $prove_cmd = $param{prove_cmd}; my $prove_dir = $param{prove_dir}; assert_httpd()->then(sub { @@ -269,16 +266,6 @@ sub check_env { die 'Missing required environmental variables: ', join(', ', @missing_env), "\n"; } } -sub check_httpd_env { - check_env(qw( - HTTPD_StartServers - HTTPD_MinSpareServers - HTTPD_MaxSpareServers - HTTPD_ServerLimit - HTTPD_MaxClients - HTTPD_MaxRequestsPerChild - )) -} sub fix_path { $ENV{PATH} = "/app/local/bin:$ENV{PATH}"; |