8 lines
140 B
Bash
8 lines
140 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Apache gets grumpy about PID files pre-existing
|
|
rm -f /var/run/apache2/apache2.pid
|
|
|
|
exec apache2ctl -DFOREGROUND "$@"
|