aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox-initscripts/httpd.initd
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-07-19 09:13:06 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-07-19 09:13:06 +0000
commit8b63b64f4fd16c21acd47ae8751927b0ca785ecd (patch)
treedd7f36f6f29ee1d89203d93d22f75693e9ad0fe7 /main/busybox-initscripts/httpd.initd
parent5aa71653044474a3fdc41dbed4a2e1a818d91093 (diff)
downloadaports-8b63b64f4fd16c21acd47ae8751927b0ca785ecd.tar.bz2
aports-8b63b64f4fd16c21acd47ae8751927b0ca785ecd.tar.xz
main/busybox-initscripts: use pidfile
Use the pidfile rather than exec name to stop services. This fixes issue with qemu-arm
Diffstat (limited to 'main/busybox-initscripts/httpd.initd')
-rw-r--r--main/busybox-initscripts/httpd.initd18
1 files changed, 5 insertions, 13 deletions
diff --git a/main/busybox-initscripts/httpd.initd b/main/busybox-initscripts/httpd.initd
index be23a6b3a7..091207e47b 100644
--- a/main/busybox-initscripts/httpd.initd
+++ b/main/busybox-initscripts/httpd.initd
@@ -1,21 +1,13 @@
#!/sbin/runscript
-DAEMON=/usr/sbin/httpd
+name="busybox $SVCNAME"
+command="/usr/sbin/$SVCNAME"
+command_args="$HTTPD_OPTS"
+pidfile="/var/run/$SVCNAME.pid"
+
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 $?
-}
-