summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-09-15 19:19:34 +0200
committerGitHub <noreply@github.com>2017-09-15 19:19:34 +0200
commit06c57b6e475767923f8294cf93fd746d45f3dc6f (patch)
tree75c6e153fa67edc0ed98aece1b2b6e6b63113c1d /scripts
parent66b835ba543d4c5a8ecabea9337b11e009b32ce2 (diff)
downloadbugzilla-06c57b6e475767923f8294cf93fd746d45f3dc6f.tar.gz
bugzilla-06c57b6e475767923f8294cf93fd746d45f3dc6f.tar.xz
re-add cmd_httpd
also fix some whitespace
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/entrypoint.pl4
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;