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