diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2006-01-14 18:53:41 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2006-01-14 18:53:41 +0000 |
commit | bbaaee9e42a1b7ce1afdbbc67ef845489eb7b637 (patch) | |
tree | e0952cf80facd1394fd3594f55c7a42399000b5e /net-print | |
parent | Add util-macros's license. (diff) | |
download | gentoo-2-bbaaee9e42a1b7ce1afdbbc67ef845489eb7b637.tar.gz gentoo-2-bbaaee9e42a1b7ce1afdbbc67ef845489eb7b637.tar.bz2 gentoo-2-bbaaee9e42a1b7ce1afdbbc67ef845489eb7b637.zip |
Add Alex Rostovtsev <tetromino at gmail dot com>'s init fix for bug 97033. Thanks to all bug participants.
(Portage version: 2.0.53)
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/hplip/ChangeLog | 6 | ||||
-rw-r--r-- | net-print/hplip/Manifest | 2 | ||||
-rw-r--r-- | net-print/hplip/files/hplip.init.d | 7 |
3 files changed, 10 insertions, 5 deletions
diff --git a/net-print/hplip/ChangeLog b/net-print/hplip/ChangeLog index c103b82d1245..91783cba25c4 100644 --- a/net-print/hplip/ChangeLog +++ b/net-print/hplip/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-print/hplip # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/ChangeLog,v 1.12 2006/01/14 18:23:03 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/ChangeLog,v 1.13 2006/01/14 18:53:41 vanquirius Exp $ + + 14 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> files/hplip.init.d: + Add Alex Rostovtsev <tetromino at gmail dot com>'s init fix for bug 97033. + Thanks to all bug participants. *hplip-0.9.7-r1 (14 Jan 2006) diff --git a/net-print/hplip/Manifest b/net-print/hplip/Manifest index cd743f8c13dc..05ae83b8bf95 100644 --- a/net-print/hplip/Manifest +++ b/net-print/hplip/Manifest @@ -3,7 +3,7 @@ MD5 ce4ebffecf6776bf8b594d515f151b0e files/digest-hplip-0.9.3 146 MD5 6d67b8483b9c21c792fda3ed690cb26a files/digest-hplip-0.9.4 145 MD5 cbf1b3a3716e0de9faef1b950ad93b9d files/digest-hplip-0.9.5 145 MD5 68a5b9bc1ecb54c47e0aec2ea66b457a files/digest-hplip-0.9.7-r1 208 -MD5 5243cb60063760c1f71d7d026720421e files/hplip.init.d 898 +MD5 ba8ad38311fc141a73145108e68bb2ec files/hplip.init.d 848 MD5 f3a777f2c6eeebb99f32e02b52b65a70 hplip-0.9.3.ebuild 2570 MD5 39df325ae3f38e64a979900d6c54d24f hplip-0.9.4.ebuild 2575 MD5 b8797d3c934c32f6ad30b83ac842356b hplip-0.9.5.ebuild 2709 diff --git a/net-print/hplip/files/hplip.init.d b/net-print/hplip/files/hplip.init.d index b7425ace6646..e65375b00c6c 100644 --- a/net-print/hplip/files/hplip.init.d +++ b/net-print/hplip/files/hplip.init.d @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/files/hplip.init.d,v 1.1 2005/06/07 17:02:33 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/files/hplip.init.d,v 1.2 2006/01/14 18:53:41 vanquirius Exp $ depend() { before cupsd @@ -16,7 +16,8 @@ start() { ebegin "Starting hpssd" start-stop-daemon --quiet --start --exec /usr/share/hplip/hpssd.py \ - --pidfile /var/run/hpssd.pid >/dev/null 2>&1 + --pidfile /var/run/hpssd.pid --name "python /usr/share/hplip/hpssd.py" \ + >/dev/null 2>&1 eend $? } |