diff options
author | 2011-10-23 16:47:16 +0000 | |
---|---|---|
committer | 2011-10-23 16:47:16 +0000 | |
commit | 6085212c526ae88c361ef8904b02a06a415ac0c0 (patch) | |
tree | 6dda7e77a40f35e84d8afcd0b4cf73a7fc8c98f6 /sys-power/acpid/files | |
parent | old (diff) | |
download | gentoo-2-6085212c526ae88c361ef8904b02a06a415ac0c0.tar.gz gentoo-2-6085212c526ae88c361ef8904b02a06a415ac0c0.tar.bz2 gentoo-2-6085212c526ae88c361ef8904b02a06a415ac0c0.zip |
old
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Diffstat (limited to 'sys-power/acpid/files')
-rw-r--r-- | sys-power/acpid/files/acpid-2.0.3-init.d | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sys-power/acpid/files/acpid-2.0.3-init.d b/sys-power/acpid/files/acpid-2.0.3-init.d deleted file mode 100644 index f6acb60a620c..000000000000 --- a/sys-power/acpid/files/acpid-2.0.3-init.d +++ /dev/null @@ -1,30 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2010 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.3-init.d,v 1.1 2010/04/04 16:39:09 ssuominen Exp $ - -opts="reload" - -depend() { - need localmount - use logger - before hald -} - -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 --oknodo --exec /usr/sbin/acpid --signal HUP - eend $? -} |