summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-08-04 17:01:47 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-08-04 17:01:47 +0000
commitdee49a142a908316bf58c4bc855cdb2b80aea91e (patch)
tree51e82a842b0f2b8388913a3b9baf3cd7bb6d6f66 /sys-power/acpid/files
parentRevision bump to ensure that users update to the new tarballs, which install ... (diff)
downloadgentoo-2-dee49a142a908316bf58c4bc855cdb2b80aea91e.tar.gz
gentoo-2-dee49a142a908316bf58c4bc855cdb2b80aea91e.tar.bz2
gentoo-2-dee49a142a908316bf58c4bc855cdb2b80aea91e.zip
Version bump. Install systemd unit file wrt #375269 by Michał Górny. Remove deprecated --oknodo from initd script wrt #377761. Remove support for sys-apps/hal and drop "before hald" from initd script.
(Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
Diffstat (limited to 'sys-power/acpid/files')
-rw-r--r--sys-power/acpid/files/acpid-2.0.11-init.d29
-rw-r--r--sys-power/acpid/files/acpid.service9
2 files changed, 38 insertions, 0 deletions
diff --git a/sys-power/acpid/files/acpid-2.0.11-init.d b/sys-power/acpid/files/acpid-2.0.11-init.d
new file mode 100644
index 000000000000..1f2c68e3c9c5
--- /dev/null
+++ b/sys-power/acpid/files/acpid-2.0.11-init.d
@@ -0,0 +1,29 @@
+#!/sbin/runscript
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/files/acpid-2.0.11-init.d,v 1.1 2011/08/04 17:01:47 ssuominen Exp $
+
+opts="reload"
+
+depend() {
+ need localmount
+ use logger
+}
+
+start() {
+ ebegin "Starting acpid"
+ start-stop-daemon --start --quiet --exec /usr/sbin/acpid -- ${ACPID_OPTIONS}
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping acpid"
+ start-stop-daemon --stop --exec /usr/sbin/acpid
+ eend $?
+}
+
+reload() {
+ ebegin "Reloading acpid configuration"
+ start-stop-daemon --stop --exec /usr/sbin/acpid --signal HUP
+ eend $?
+}
diff --git a/sys-power/acpid/files/acpid.service b/sys-power/acpid/files/acpid.service
new file mode 100644
index 000000000000..4e224ebe62e8
--- /dev/null
+++ b/sys-power/acpid/files/acpid.service
@@ -0,0 +1,9 @@
+[Unit]
+Description=ACPI Event Daemon
+After=syslog.target
+
+[Service]
+ExecStart=/usr/sbin/acpid -f
+
+[Install]
+WantedBy=multi-user.target