24 lines
533 B
Bash
Executable file
24 lines
533 B
Bash
Executable file
#!/sbin/runscript
|
|
|
|
depend() {
|
|
need ntpd
|
|
}
|
|
|
|
|
|
start() {
|
|
ebegin "Starting Apache (with wrapper)"
|
|
start-stop-daemon --background --start --exec /bootstrap/start.sh \
|
|
--make-pidfile --pidfile /var/run/apache-start.pid
|
|
eend $?
|
|
}
|
|
|
|
|
|
stop() {
|
|
ebegin "Stopping Apache (with wrapper)"
|
|
start-stop-daemon --stop --exec /bootstrap/start.sh \
|
|
--pidfile /var/run/apache-start.pid
|
|
start-stop-daemon --stop --exec httpd \
|
|
--pidfile /var/run/apache2/httpd.pid
|
|
eend $?
|
|
}
|
|
# vim: set ft=sh bkc=yes:
|