Browse Source

unbound: Rewrite init script to use procd

Signed-off-by: Michael Hanselmann <public@hansmi.ch>
lilik-openwrt-22.03
Michael Hanselmann 8 years ago
parent
commit
28945ea398
2 changed files with 10 additions and 10 deletions
  1. +1
    -1
      net/unbound/Makefile
  2. +9
    -9
      net/unbound/files/unbound.init

+ 1
- 1
net/unbound/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=unbound PKG_NAME:=unbound
PKG_VERSION:=1.5.9 PKG_VERSION:=1.5.9
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_LICENSE:=BSD-3-Clause PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE PKG_LICENSE_FILES:=LICENSE


+ 9
- 9
net/unbound/files/unbound.init View File

@ -1,14 +1,14 @@
#!/bin/sh /etc/rc.common #!/bin/sh /etc/rc.common
#Copyright (C) 2010 Ondrej Caletka <o.caletka@sh.cvut.cz>
# Copyright (C) 2016 Michael Hanselmann
START=61 START=61
start () {
unbound
}
USE_PROCD=1
stop () {
PIDFILE='/var/run/unbound.pid'
if [ -f $PIDFILE ] ; then
kill $(cat $PIDFILE)
fi
start_service() {
procd_open_instance
procd_set_param command /usr/sbin/unbound
procd_append_param command -d # don't daemonize
procd_set_param respawn
procd_close_instance
} }

Loading…
Cancel
Save