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

DAEMON=/usr/sbin/httpd

depend() {
	need net
}

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 $?
}