questd hosts uscriptd and ueventd as well

This commit is contained in:
Sukru Senli 2016-04-05 15:06:50 +02:00
parent e16d6d9b5b
commit 9c4ede538b
2 changed files with 15 additions and 4 deletions

View file

@ -6,9 +6,9 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=questd
PKG_VERSION:=3.0.0
PKG_VERSION:=3.0.1
PKG_SOURCE_VERSION:=4ec2f7e451941fbfbb990113b82c82bc8d906f57
PKG_SOURCE_VERSION:=f6d17788f84a7493c1e3b3a64c00c7e8e5ae6a86
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=http://public.inteno.se:/questd

View file

@ -5,17 +5,28 @@ STOP=96
USE_PROCD=1
NAME=questd
PROG=/sbin/questd
start_service() {
procd_open_instance
procd_set_param command "$PROG"
procd_set_param command "/sbin/questd"
procd_set_param respawn
procd_close_instance
procd_open_instance
procd_set_param command "/sbin/uscriptd"
procd_set_param respawn
procd_close_instance
procd_open_instance
procd_set_param command "/sbin/ueventd"
procd_set_param respawn
procd_close_instance
}
stop() {
service_stop /sbin/questd
service_stop /sbin/uscriptd
service_stop /sbin/ueventd
}
service_triggers()