From 9c4ede538bed9d6b4f9654010df353a372cfcd93 Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Tue, 5 Apr 2016 15:06:50 +0200 Subject: [PATCH] questd hosts uscriptd and ueventd as well --- questd/Makefile | 4 ++-- questd/files/etc/init.d/quest | 15 +++++++++++++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/questd/Makefile b/questd/Makefile index 694479d67..69504d8ba 100644 --- a/questd/Makefile +++ b/questd/Makefile @@ -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 diff --git a/questd/files/etc/init.d/quest b/questd/files/etc/init.d/quest index 48185f8f2..bccb6463d 100755 --- a/questd/files/etc/init.d/quest +++ b/questd/files/etc/init.d/quest @@ -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()