From: Dylan William Hardison Date: Fri, 15 Sep 2017 17:19:34 +0000 (-0400) Subject: re-add cmd_httpd X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06c57b6e475767923f8294cf93fd746d45f3dc6f;p=thirdparty%2Fbugzilla.git re-add cmd_httpd also fix some whitespace --- diff --git a/scripts/entrypoint.pl b/scripts/entrypoint.pl index c39551131..faec25719 100755 --- a/scripts/entrypoint.pl +++ b/scripts/entrypoint.pl @@ -38,7 +38,7 @@ $func->(@ARGV); sub cmd_httpd { check_data_dir(); wait_for_db(); - + run( '/usr/sbin/httpd', '-DFOREGROUND', '-f', '/app/httpd/httpd.conf' ); } sub cmd_load_test_data { @@ -249,7 +249,7 @@ sub wait_for_db { $dbh = DBI->connect( $dsn, $c->{db_user}, - $c->{db_pass}, + $c->{db_pass}, { RaiseError => 0, PrintError => 0 } ); last if $dbh;