11 lines
173 B
Plaintext
Raw Normal View History

2020-12-10 18:00:13 +03:00
setup_apache () {
return 0
}
run_apache () {
# Apache gets grumpy about PID files pre-existing
rm -f ${APACHE_PID_FILE}
exec /usr/sbin/apache2ctl -DFOREGROUND
}