aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox-initscripts/httpd.initd
blob: 0737cfe19afede3d74ffcf0814c853f90d45bfb5 (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
	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 $?
}