7 lines
126 B
Plaintext
7 lines
126 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# Apache gets grumpy about PID files pre-existing
|
||
|
rm -f /run/apache2/httpd.pid
|
||
|
|
||
|
exec httpd -DFOREGROUND "$@"
|