diff options
author | Rob Holland <tigger@gentoo.org> | 2004-07-16 15:25:05 +0000 |
---|---|---|
committer | Rob Holland <tigger@gentoo.org> | 2004-07-16 15:25:05 +0000 |
commit | 53a7cc3bcbd2f92672e9a43c0bb459d37071c0c5 (patch) | |
tree | 07add8507d022b5ef51d52419808599ffea7f3ee /net-www/pound | |
parent | Stable on sparc (diff) | |
download | historical-53a7cc3bcbd2f92672e9a43c0bb459d37071c0c5.tar.gz historical-53a7cc3bcbd2f92672e9a43c0bb459d37071c0c5.tar.bz2 historical-53a7cc3bcbd2f92672e9a43c0bb459d37071c0c5.zip |
Fix the init script. Closes #57134. Thanks to kuma@legmo.com for the report
Diffstat (limited to 'net-www/pound')
-rw-r--r-- | net-www/pound/ChangeLog | 5 | ||||
-rw-r--r-- | net-www/pound/Manifest | 4 | ||||
-rw-r--r-- | net-www/pound/files/pound.init | 7 |
3 files changed, 9 insertions, 7 deletions
diff --git a/net-www/pound/ChangeLog b/net-www/pound/ChangeLog index 1df87095a40c..ca0e661c4528 100644 --- a/net-www/pound/ChangeLog +++ b/net-www/pound/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-www/pound # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/pound/ChangeLog,v 1.10 2004/07/01 22:49:22 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/pound/ChangeLog,v 1.11 2004/07/16 15:25:05 tigger Exp $ + + 16 Jul 2004; <rob@gentoo.org> files/pound.init: + Fix the init script. Closes #57134. Thanks to kuma@legmo.com for the report 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> pound-1.6.ebuild, pound-1.7.ebuild: diff --git a/net-www/pound/Manifest b/net-www/pound/Manifest index 039e90225fcc..cfb3208e253d 100644 --- a/net-www/pound/Manifest +++ b/net-www/pound/Manifest @@ -1,8 +1,8 @@ MD5 e19018c53cee60cd47f6bf2c84d01349 pound-1.7.ebuild 1148 -MD5 11c58e7d3e698956ad08dafb75709561 ChangeLog 1268 +MD5 c0b35141247958974232d7589b531a84 ChangeLog 1393 MD5 f61bfa064e3acdfcd826e4a38b121196 metadata.xml 161 MD5 15dda659d5650e609fed767196595551 pound-1.6.ebuild 1348 -MD5 1bd8e9745a6cd606c143d35148dc1924 files/pound.init 615 +MD5 3f520e905590733604bd7cba38777f6a files/pound.init 579 MD5 0b2e14a1793d6e6393cf13f015c58a7e files/digest-pound-1.6 58 MD5 a5bfd8880ab9b367f5333083252548db files/digest-pound-1.7 58 MD5 4c7b6277bb33061b615ac9059c74cf62 files/pound.cfg 830 diff --git a/net-www/pound/files/pound.init b/net-www/pound/files/pound.init index db6f191a6b0c..e251be57236a 100644 --- a/net-www/pound/files/pound.init +++ b/net-www/pound/files/pound.init @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/pound/files/pound.init,v 1.3 2004/07/15 00:32:23 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/pound/files/pound.init,v 1.4 2004/07/16 15:25:05 tigger Exp $ depend() { need net @@ -12,13 +12,12 @@ start() { if [ ! -f "/etc/pound.cfg" ]; then eend 1 "configfile /etc/pound.cfg not found." fi - start-stop-daemon --quiet --start --startas /usr/sbin/pound \ - --pidfile /var/run/pound.pid -- -f /etc/pound.cfg + start-stop-daemon --quiet --start --exec /usr/sbin/pound -- -f /etc/pound.cfg eend $? } stop() { ebegin "Stopping pound" - start-stop-daemon --quiet --stop --pidfile /var/run/pound.pid + start-stop-daemon --quiet --stop --pidfile /var/run/pound_pid.* eend $? } |