Merge pull request #140 from Lucas-C/patch-1

Allowing to pass args to httpd through httpd-foreground command
This commit is contained in:
Tianon Gravi 2019-07-12 16:07:44 -07:00 committed by GitHub
commit 385f0d1d8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -4,4 +4,4 @@ set -e
# Apache gets grumpy about PID files pre-existing # Apache gets grumpy about PID files pre-existing
rm -f /usr/local/apache2/logs/httpd.pid rm -f /usr/local/apache2/logs/httpd.pid
exec httpd -DFOREGROUND exec httpd -DFOREGROUND "$@"

View File

@ -4,4 +4,4 @@ set -e
# Apache gets grumpy about PID files pre-existing # Apache gets grumpy about PID files pre-existing
rm -f /usr/local/apache2/logs/httpd.pid rm -f /usr/local/apache2/logs/httpd.pid
exec httpd -DFOREGROUND exec httpd -DFOREGROUND "$@"