aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox-initscripts/httpd.initd
blob: be23a6b3a740a98332600fa17a17fdcb4051a0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/sbin/runscript

DAEMON=/usr/sbin/httpd

depend() {
	need net localmount
	after firewall
}

start() {
	ebegin "Starting busybox httpd"
	start-stop-daemon --start --exec $DAEMON -- $HTTPD_OPTS
	eend $?
}

stop () {
	ebegin "Stopping busybox httpd"
	start-stop-daemon --stop --exec $DAEMON
	eend $?
}