8 lines
138 B
Text
8 lines
138 B
Text
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# Apache gets grumpy about PID files pre-existing
|
||
|
rm -f /usr/local/apache2/logs/httpd.pid
|
||
|
|
||
|
exec httpd -DFOREGROUND "$@"
|