6 lines
161 B
Bash
6 lines
161 B
Bash
#!/bin/bash
|
|
trap "echo 'Stopping Apache...'; apachectl stop; exit 0" SIGTERM
|
|
apachectl -D FOREGROUND &
|
|
# Wait for Apache and all child processes to exit
|
|
wait $!
|