diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/entrypoint.pl | 4 |
1 files changed, 2 insertions, 2 deletions
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; |