diff options
author | Markus Ullmann <jokey@gentoo.org> | 2006-10-24 08:17:04 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2006-10-24 08:17:04 +0000 |
commit | d20b995b3bc6974b8cb79d5f7552d665266d3809 (patch) | |
tree | d747b607010776ebf0c1ee0f9ad9621419713631 /app-misc/lcdproc/files | |
parent | removing old init scripts (diff) | |
download | historical-d20b995b3bc6974b8cb79d5f7552d665266d3809.tar.gz historical-d20b995b3bc6974b8cb79d5f7552d665266d3809.tar.bz2 historical-d20b995b3bc6974b8cb79d5f7552d665266d3809.zip |
removing old init scripts
Package-Manager: portage-2.1.2_pre3-r7
Diffstat (limited to 'app-misc/lcdproc/files')
-rw-r--r-- | app-misc/lcdproc/files/0.4.5-LCDd | 22 | ||||
-rw-r--r-- | app-misc/lcdproc/files/0.5.0-LCDd | 24 |
2 files changed, 0 insertions, 46 deletions
diff --git a/app-misc/lcdproc/files/0.4.5-LCDd b/app-misc/lcdproc/files/0.4.5-LCDd deleted file mode 100644 index 9b153edc6204..000000000000 --- a/app-misc/lcdproc/files/0.4.5-LCDd +++ /dev/null @@ -1,22 +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/0.4.5-LCDd,v 1.1 2006/09/22 14:12:58 jokey Exp $ - -depend() { - use net -} - -start() { - ebegin "Starting LCDd" - start-stop-daemon --start --quiet -m --pidfile /var/run/LCDd.pid \ - --background --exec /usr/sbin/LCDd -- -s -f -c /etc/LCDd.conf - sleep 1 - eend $? -} - -stop() { - ebegin "Stopping LCDd" - start-stop-daemon --stop --quiet --pidfile /var/run/LCDd.pid - eend $? -} diff --git a/app-misc/lcdproc/files/0.5.0-LCDd b/app-misc/lcdproc/files/0.5.0-LCDd deleted file mode 100644 index daefa4aaaa35..000000000000 --- a/app-misc/lcdproc/files/0.5.0-LCDd +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/files/0.5.0-LCDd,v 1.1 2006/09/22 14:12:58 jokey Exp $ - -depend() { - use net -} - -start() { - ebegin "Starting LCDd" - start-stop-daemon --start --quiet -m --pidfile /var/run/LCDd.pid \ - --background --exec /usr/sbin/LCDd -- -s 1 -f 1 \ - || ( eerror "Failed to start LCDd. Did you remember to set a driver in /etc/LCDd.conf? See syslog for details." \ - && return 1 ) - sleep 1 - eend $? -} - -stop() { - ebegin "Stopping LCDd" - start-stop-daemon --stop --quiet --pidfile /var/run/LCDd.pid - eend $? -} |