summaryrefslogtreecommitdiff
path: root/nonsystemd/acpid-openrc/acpid.initd
diff options
context:
space:
mode:
Diffstat (limited to 'nonsystemd/acpid-openrc/acpid.initd')
-rw-r--r--nonsystemd/acpid-openrc/acpid.initd22
1 files changed, 22 insertions, 0 deletions
diff --git a/nonsystemd/acpid-openrc/acpid.initd b/nonsystemd/acpid-openrc/acpid.initd
new file mode 100644
index 000000000..98e36a2ff
--- /dev/null
+++ b/nonsystemd/acpid-openrc/acpid.initd
@@ -0,0 +1,22 @@
+#!/usr/bin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+extra_started_commands="reload"
+command="/usr/bin/acpid"
+command_args="${ACPID_ARGS}"
+description="Daemon for Advanced Configuration and Power Interface"
+supervisor="supervise-daemon"
+command_args_foreground="--foreground"
+#pidfile="/run/acpid.pid"
+
+depend() {
+ need localmount
+ use logger
+}
+
+reload() {
+ ebegin "Reloading acpid configuration"
+ ${supervisor} ${RC_SVCNAME} --signal HUP --pidfile /run/acpid.pid
+ eend $?
+}