* [gentoo-commits] gentoo-x86 commit in app-misc/lcdproc/files: 0.5.1-LCDd.initd
@ 2012-05-07 9:51 Pacho Ramos (pacho)
0 siblings, 0 replies; 2+ messages in thread
From: Pacho Ramos (pacho) @ 2012-05-07 9:51 UTC (permalink / raw
To: gentoo-commits
pacho 12/05/07 09:51:33
Modified: 0.5.1-LCDd.initd
Log:
Version bump, remove old, this also fixes bug #359501 by Leho Kraav and jannis and bug #354507 by Markus Lischka.
(Portage version: 2.1.10.57/cvs/Linux x86_64)
Revision Changes Path
1.2 app-misc/lcdproc/files/0.5.1-LCDd.initd
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd?r1=1.1&r2=1.2
Index: 0.5.1-LCDd.initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 0.5.1-LCDd.initd 24 Oct 2006 08:14:35 -0000 1.1
+++ 0.5.1-LCDd.initd 7 May 2012 09:51:33 -0000 1.2
@@ -1,7 +1,7 @@
#!/sbin/runscript
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd,v 1.1 2006/10/24 08:14:35 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd,v 1.2 2012/05/07 09:51:33 pacho Exp $
depend() {
use net
@@ -11,7 +11,7 @@
start() {
ebegin "Starting LCDd"
start-stop-daemon --start --quiet -m --pidfile /var/run/LCDd.pid \
- --background --exec /usr/sbin/LCDd -- -s 1 -f
+ --exec /usr/sbin/LCDd -- -s 1 -f
eend $? "Failed to start LCDd. Did you remember to set a driver in /etc/LCDd.conf? See syslog for details."
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-misc/lcdproc/files: 0.5.1-LCDd.initd
@ 2012-05-10 9:33 Pacho Ramos (pacho)
0 siblings, 0 replies; 2+ messages in thread
From: Pacho Ramos (pacho) @ 2012-05-10 9:33 UTC (permalink / raw
To: gentoo-commits
pacho 12/05/10 09:33:55
Modified: 0.5.1-LCDd.initd
Log:
Revert init script change as it causes problems (#415101 by Eduard Huguet) and former looks to start fine for me.
(Portage version: 2.1.10.57/cvs/Linux x86_64)
Revision Changes Path
1.3 app-misc/lcdproc/files/0.5.1-LCDd.initd
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd?r1=1.2&r2=1.3
Index: 0.5.1-LCDd.initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- 0.5.1-LCDd.initd 7 May 2012 09:51:33 -0000 1.2
+++ 0.5.1-LCDd.initd 10 May 2012 09:33:55 -0000 1.3
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd,v 1.2 2012/05/07 09:51:33 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/files/0.5.1-LCDd.initd,v 1.3 2012/05/10 09:33:55 pacho Exp $
depend() {
use net
@@ -11,7 +11,7 @@
start() {
ebegin "Starting LCDd"
start-stop-daemon --start --quiet -m --pidfile /var/run/LCDd.pid \
- --exec /usr/sbin/LCDd -- -s 1 -f
+ --background --exec /usr/sbin/LCDd -- -s 1 -f
eend $? "Failed to start LCDd. Did you remember to set a driver in /etc/LCDd.conf? See syslog for details."
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-05-10 9:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-10 9:33 [gentoo-commits] gentoo-x86 commit in app-misc/lcdproc/files: 0.5.1-LCDd.initd Pacho Ramos (pacho)
-- strict thread matches above, loose matches on Subject: below --
2012-05-07 9:51 Pacho Ramos (pacho)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox