diff options
author | Jeffrey Gardner <je_fro@gentoo.org> | 2009-02-26 16:58:36 +0000 |
---|---|---|
committer | Jeffrey Gardner <je_fro@gentoo.org> | 2009-02-26 16:58:36 +0000 |
commit | cb7133b8bce5ae9bf505df45b234421e3df3be1c (patch) | |
tree | cd3d88824b4fbcf0d622d956ea73b5577df0760e | |
parent | Latest for testing (diff) | |
download | je_fro-cb7133b8bce5ae9bf505df45b234421e3df3be1c.tar.gz je_fro-cb7133b8bce5ae9bf505df45b234421e3df3be1c.tar.bz2 je_fro-cb7133b8bce5ae9bf505df45b234421e3df3be1c.zip |
needed for install
svn path=/; revision=264
-rw-r--r-- | x11-drivers/ati-drivers/files/atieventsd.init | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-drivers/ati-drivers/files/atieventsd.init b/x11-drivers/ati-drivers/files/atieventsd.init new file mode 100644 index 0000000..73139ce --- /dev/null +++ b/x11-drivers/ati-drivers/files/atieventsd.init @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/files/atieventsd.init,v 1.3 2007/05/18 23:58:01 marienz Exp $ + +depend() { + need acpid +} + +start() { + ebegin "Starting ${SVCNAME}" + start-stop-daemon --start --exec /opt/sbin/atieventsd -- ${ATIEVENTSDOPTS} + eend $? +} + +stop() { + ebegin "Stopping ${SVCNAME}" + start-stop-daemon --stop --quiet --exec /opt/sbin/atieventsd + eend $? +}
\ No newline at end of file |