diff options
author | Chris White <chriswhite@gentoo.org> | 2004-09-05 02:38:34 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2004-09-05 02:38:34 +0000 |
commit | 5dfa5d87832ea44003959fcb57382282ce14fa55 (patch) | |
tree | 36c7e4dafb6a3bc5745f7e1244feec827c48386c | |
parent | Made shoutcast_trans use pidfile in start-stop-daemon for upcomming shoutcast... (diff) | |
download | gentoo-2-5dfa5d87832ea44003959fcb57382282ce14fa55.tar.gz gentoo-2-5dfa5d87832ea44003959fcb57382282ce14fa55.tar.bz2 gentoo-2-5dfa5d87832ea44003959fcb57382282ce14fa55.zip |
Fixed the stop() function in shoutcast_trans. Bad Chris.. no cookie..
-rw-r--r-- | media-sound/shoutcast-trans-bin/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/shoutcast-trans-bin/Manifest | 2 | ||||
-rw-r--r-- | media-sound/shoutcast-trans-bin/files/shoutcast_trans | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/media-sound/shoutcast-trans-bin/ChangeLog b/media-sound/shoutcast-trans-bin/ChangeLog index 065d78b84258..bf89e52b2518 100644 --- a/media-sound/shoutcast-trans-bin/ChangeLog +++ b/media-sound/shoutcast-trans-bin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/shoutcast-trans-bin # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/shoutcast-trans-bin/ChangeLog,v 1.3 2004/09/05 02:17:10 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/shoutcast-trans-bin/ChangeLog,v 1.4 2004/09/05 02:38:34 chriswhite Exp $ + + 05 Sep 2004; Chris White <chriswhite@gentoo.org> files/shoutcast_trans: + Fixed the stop() function in shoutcast_trans init.d script. 05 Sep 2004; Chris White <chriswhite@gentoo.org> files/shoutcast_trans, shoutcast-trans-bin-0.4.0.ebuild: diff --git a/media-sound/shoutcast-trans-bin/Manifest b/media-sound/shoutcast-trans-bin/Manifest index e58acda0b935..6c91b8fc8143 100644 --- a/media-sound/shoutcast-trans-bin/Manifest +++ b/media-sound/shoutcast-trans-bin/Manifest @@ -2,4 +2,4 @@ MD5 2fdb183a9eda0de9357bd162e254c133 shoutcast-trans-bin-0.4.0.ebuild 2015 MD5 dbafe0153b3ee5f599d5dbeac4aa3210 metadata.xml 224 MD5 1cdbe374bf4e23a749384d5e7d7419e0 ChangeLog 899 MD5 9ccef27495f4b1f47acfefdb67ccffab files/digest-shoutcast-trans-bin-0.4.0 67 -MD5 712005fe18cb1eb7c10adb324ebb7065 files/shoutcast_trans 825 +MD5 00cb1099bfef4f30473063bedcccf873 files/shoutcast_trans 820 diff --git a/media-sound/shoutcast-trans-bin/files/shoutcast_trans b/media-sound/shoutcast-trans-bin/files/shoutcast_trans index 058b4f19b2e3..eafb6d3a8734 100644 --- a/media-sound/shoutcast-trans-bin/files/shoutcast_trans +++ b/media-sound/shoutcast-trans-bin/files/shoutcast_trans @@ -27,6 +27,6 @@ start() { stop() { ebegin "Stopping Shoutcast Trans" - start-stop-daemon --stop --quiet --exec /opt/shoutcast/sc_trans_linux + start-stop-daemon --stop --quiet --pidfile /var/run/shoutcast_trans.pid eend $? } |