diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-09-15 19:19:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-15 19:19:34 +0200 |
commit | 06c57b6e475767923f8294cf93fd746d45f3dc6f (patch) | |
tree | 75c6e153fa67edc0ed98aece1b2b6e6b63113c1d /scripts | |
parent | 66b835ba543d4c5a8ecabea9337b11e009b32ce2 (diff) | |
download | bugzilla-06c57b6e475767923f8294cf93fd746d45f3dc6f.tar.gz bugzilla-06c57b6e475767923f8294cf93fd746d45f3dc6f.tar.xz |
re-add cmd_httpd
also fix some whitespace
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; |