Merge pull request #11542 from neheb/acp

acpid: convert to procd
This commit is contained in:
Rosen Penev 2020-03-15 20:02:50 -07:00 committed by GitHub
commit 13cc866ac0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 16 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=acpid
PKG_VERSION:=2.0.32
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@SF/acpid2

View File

@ -4,22 +4,16 @@
START=99
STOP=80
ACPID_BIN="/usr/sbin/acpid"
ACPID_PID="/var/run/acpid.pid"
USE_PROCD=1
start() {
[ -x "$ACPID_BIN" ] || return 1
start-stop-daemon -S -x $ACPID_BIN -p $ACPID_PID
start_service() {
procd_open_instance
procd_set_param command "/usr/sbin/acpid"
procd_append_param command -f
procd_append_param command -S
procd_set_param pidfile "/var/run/acpid.pid"
}
boot() {
# Do nothing on boot
[ -x "$ACPID_BIN" ] || return 1
start-stop-daemon -S -x $ACPID_BIN -p $ACPID_PID
exit 0
}
stop() {
service_kill ${ACPID_BIN##*/} $ACPID_PID
rm -f $ACPID_PID
reload_service()\ {
procd_send_signal "acpid"
}