diff options
Diffstat (limited to 'app-misc/lcdproc/files/lcdproc')
-rw-r--r-- | app-misc/lcdproc/files/lcdproc | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/app-misc/lcdproc/files/lcdproc b/app-misc/lcdproc/files/lcdproc deleted file mode 100644 index 95e7ba7..0000000 --- a/app-misc/lcdproc/files/lcdproc +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/files/lcdproc,v 1.10 2004/07/14 21:32:56 agriffis Exp $ - -depend(){ - need LCDd -} -start() { - source /etc/lcdproc.conf - ebegin "Starting lcdproc" - start-stop-daemon --start --background \ - --exec /usr/bin/lcdproc -- ${SCREENS} - eend $? -} - -stop() { - ebegin "Stopping lcdproc" - start-stop-daemon --stop --exec /usr/bin/lcdproc - eend $? -} |