diff options
Diffstat (limited to 'sys-power/acpid/files/acpid-2.0.3-init.d')
-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 $? -} |