xinetd: do not restart service after config change if it is not running
Signed-off-by: Helge Mader <ma@dev.tdt.de>
This commit is contained in:
parent
b383f4af28
commit
0bf2130f62
2 changed files with 7 additions and 3 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=xinetd
|
PKG_NAME:=xinetd
|
||||||
PKG_VERSION:=2.3.15
|
PKG_VERSION:=2.3.15
|
||||||
PKG_RELEASE:=9
|
PKG_RELEASE:=10
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://github.com/xinetd-org/xinetd/archive
|
PKG_SOURCE_URL:=https://github.com/xinetd-org/xinetd/archive
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
#!/bin/sh /etc/rc.common
|
#!/bin/sh /etc/rc.common
|
||||||
# Copyright (C) 2006-2011 OpenWrt.org
|
# Copyright (C) 2006-2011 OpenWrt.org
|
||||||
|
|
||||||
|
. /lib/functions.sh
|
||||||
|
|
||||||
START=50
|
START=50
|
||||||
STOP=10
|
STOP=10
|
||||||
|
|
||||||
|
@ -119,8 +121,10 @@ start_service() {
|
||||||
}
|
}
|
||||||
|
|
||||||
reload_service() {
|
reload_service() {
|
||||||
procd_send_signal xinetd "*" QUIT
|
procd_running xinetd "instance1" && {
|
||||||
start
|
procd_send_signal xinetd "*" QUIT
|
||||||
|
start
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
service_triggers() {
|
service_triggers() {
|
||||||
|
|
Loading…
Reference in a new issue